Closed huonw closed 11 years ago
I thought lisp was supposed to be easy to parse! Somehow the parser is quite long. :(
Didn't bother about tracking line and columns, nor does it tokenise strings yet, so (foo "ab cd") calls foo with two Symbol arguments "ab and cd".
(foo "ab cd")
Symbol
"ab
cd"
Thankyou sir!
I thought lisp was supposed to be easy to parse! Somehow the parser is quite long. :(
Didn't bother about tracking line and columns, nor does it tokenise strings yet, so
(foo "ab cd")
calls foo with twoSymbol
arguments"ab
andcd"
.