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.
Name:
Anonymous2011-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.