summaryrefslogtreecommitdiffstats
path: root/lexer.l
AgeCommit message (Collapse)Author
2012-10-20A string interpolation syntax that I don't hate. Also tests.Stephen Dolan
You can interpolate values into strings using \(this syntax), e.g. "best \("str" + "ing") ever"
2012-10-07Add <,>,<=,>= binopsStephen Roantree
2012-09-22Allow underscores in IDENT tokens. Fixes #3.Stephen Dolan
IDENT syntax now includes ASCII letters and underscores, so '.foo_bar' now works. Non-ASCII letters won't work in IDENT tokens (it's impossible to tell which non-ascii characters are "letters" without full unicode tables), so '.données' is still a syntax error (the workaround is '.["données"]', since you can put anything you like in a string).
2012-09-18Move everything around - delete old Haskell code, clean up build.Stephen Dolan