brendanzab / rusp

A minimal scripting and data language for Rust.
Apache License 2.0
16 stars 3 forks source link

An initial (incomplete) parser and pretty-printer. #1

Closed huonw closed 11 years ago

huonw commented 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".

brendanzab commented 11 years ago

Thankyou sir!