aboutsummaryrefslogtreecommitdiff
path: root/src/example (follow)
Commit message (Collapse)AuthorAgeFilesLines
* [Cleanup]Eduardo Julian2015-01-191-38/+0
| | | | - Removed a lot of useless comments & logging. - Removed the useless test1.lux file.
* The language officially has a name: Lux (stylized as "lux").Eduardo Julian2015-01-031-0/+0
|
* + Added simple let expressions. (No destructuring of tuples/records yet)Eduardo Julian2014-11-291-0/+12
| | | + Added records and simple operations on them (get, set & remove).
* + Added floats.Eduardo Julian2014-11-291-0/+6
| | | + Added def for constants.
* + Added single-line comments.Eduardo Julian2014-11-281-0/+4
| | | + Added multi-line comments, with nesting.
* + Added some very basic pattern-matching with destructuring.Eduardo Julian2014-11-271-0/+7
|
* + Can now define functions.Eduardo Julian2014-11-261-3/+6
| | | % However, they currently access Clojure's environment, instead of the interpreter's.
* + Can lex basic tokens.Eduardo Julian2014-11-251-0/+6
+ Can parse basic syntax. + Can eval integer multiplication.