summaryrefslogtreecommitdiffstats
path: root/testdata
AgeCommit message (Collapse)Author
2012-11-30Sort function and more general comparison operators.Stephen Dolan
2012-11-26Merge remote-tracking branch 'origin/master'Stephen Dolan
2012-11-25Add some preprocessor junk to make codegen cleaner.Stephen Dolan
2012-10-24Implemented contains operatorStephen Roantree
2012-10-23Add some in/equality test casesDamian Gryski
2012-10-20Add a 'keys' function. Fixes #4.Stephen Dolan
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-18Implement the 'add' builtin promised by the docs' examples.Stephen Dolan
2012-09-18Move everything around - delete old Haskell code, clean up build.Stephen Dolan