FIOC > Parens > Braces
1
Name:
Anonymous
2012-02-26 22:42
Haskell developers can admit this, why can't you?
2
Name:
Anonymous
2012-02-26 22:44
FIOC is great for leaking semantics of your program if something trashes your indentation
gb2 reddit, ``pythonista''. convert to javascript and repent
3
Name:
Anonymous
2012-02-26 22:46
something trashes your indentation
Try using a real editor.
convert to javascript
I do, every time I edit a webpage.
4
Name:
Anonymous
2012-02-26 23:08
FIOC is shit that should have died with punch cards. Free-form languages are the best languages.
5
Name:
Anonymous
2012-02-26 23:25
FIOC:
if p:
print n
return n
C-like:
if (p) {
printf("%d\n", n);
return n;
}
Enlightened FIOC wizard: ``I prefer the first because it says the same thing without the braces and semicolons by intelligently parsing the indentation that any sane programmer would use anyway.''
Retarded C faggot: ``Both are pig disgusting. Indentation is for PUSSIES!
if(n)
{
printf("%d\n", n);
return n;
} That's better !! ''
6
Name:
Anonymous
2012-02-26 23:39
>>5
Both are pig disgusting. Braces are for pussies.
if(n) return n + (printf("%d\n", n) & 0);
7
Name:
Anonymous
2012-02-26 23:45
i agree that fioc is the best, but for some reason python is annoying
8
Name:
Anonymous
2012-02-26 23:47
>>7
it's because of the FIOC
9
Name:
Anonymous
2012-02-26 23:49
>>6
void value not ignored as it should be
10
Name:
Anonymous
2012-02-27 0:00
>>9
printf returns an int, ``faggot''
11
Name:
Anonymous
2012-02-27 0:05
>>9
0/10, read your standard.
Printf can fail
12
Name:
Anonymous
2012-02-27 0:12
Java master race reporting in. Indentation with braces is the ultimate code formatting scheme.
public static void main(String[] args)
{
boolean p = true;
if (p)
{
System.out.println("Hello, world!");
}
}
13
Name:
Anonymous
2012-02-27 0:13
>>11
Printf can fail
When you use it, it probably does.
14
Name:
Anonymous
2012-02-27 0:15