|
|
|
|
|
by NhanH
4115 days ago
|
|
I don't know where this trick come from, but I've read it a long time ago, and you might find it helpful. Lisp languages in fact have the same(ish) amount of parentheses as any other language, the trick is that the placement slightly differ: the opening parentheses come before the function name, rather than after it.
Ie foo(bar) => (foo bar) . foo(bar(baz)) => (foo (bar baz)). |
|