nominolo / atto-lisp

Efficient parsing and encoding of Lisp expressions for Haskell.
Other
24 stars 16 forks source link

Any lisp expression can be quoted #26

Open kuribas opened 4 years ago

kuribas commented 4 years ago

Lisp syntax allows you to quote not just lists. This is valid lisp:

'my-symbol

however the parser currently only supports lists.

nominolo commented 4 years ago

Hm, thanks. Could you please add a few test cases?