maryrosecook / littlelisp

A small Lisp interpreter in JavaScript

Home Page:http://maryrosecook.com/blog/post/little-lisp-interpreter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Strings with parens are broken

sjl opened this issue · comments

> "a"
'a'

> "(a)"
''

> "(a"
undefined

> ")a"
[ '' ]

Thanks a lot for the bug report. Fixed.