|
|
|
|
|
by Zambyte
424 days ago
|
|
It's obvious to anyone who is familiar with both. (f x y)
vs f(x, y);
Note the extra comma and semicolon. The only place this breaks down is for simple arithmetic expressions like (+ a b) vs a + b, which is trivial enough to ignore (and also goes back in favor of Lisp when you start having more operands). |
|