|
|
|
|
|
by twotwotwo
4611 days ago
|
|
It's using prefix notation, so => (+ [] [])
[]
As in Lisp, commas aren't needed to separate list items. []+1 is parsed like [] followed by positive 1 (+1), which is why it ends up executing even though it's infix notation passed into a prefix-notation parser. |
|