SWS
1
Name:
Anonymous
2011-05-19 18:57
Significant white space. Why do you hate it so much? I'm quite happy that languages like python exist. I can't read 75% of the source code out there because it's so badly styled. Code in python.
2
Name:
Anonymous
2011-05-19 20:46
It's Python itself, not much the FIOC. Haskell does it right.
3
Name:
Anonymous
2011-05-19 20:49
Tabs vs spaces goddamn.
4
Name:
Anonymous
2011-05-19 20:53
>>3
Tabs you fucking retard. Damn...
5
Name:
Anonymous
2011-05-19 21:47
I can't read code without type sigils.
6
Name:
Anonymous
2011-05-20 1:52
I think f 3 + 5 should be interpreted as f(3)+5 and that f 3+5 should be interpreted as f(3+5).
7
Name:
^^PyThOnIsTa93^^
2011-05-20 2:48
>>6
the coed wuld be soooo clean xD nice idea btw rly phytonic :)
8
Name:
Anonymous
2011-05-20 3:15
>>2
Agreed. Haskell is the way of the
future.
9
Name:
Anonymous
2011-05-20 4:09
>>6
f 3 + 5 => f (3+5)
f 3, + 5 => f(3) + 5 # or f 3; + 5 => f(3) + 5
perfect way to call function without using annoying brackets.
10
Name:
Anonymous
2011-05-20 5:39
>>9
That would be nice. I could see it scaling up to complex expressions and still maintaining readability pretty well.
11
Name:
Anonymous
2011-05-20 9:16
RPN laughs at all your stupid whitespace problems.
12
Name:
Anonymous
2011-05-20 9:45
>>11
I was thinking the same thing.