aboutsummaryrefslogtreecommitdiff
path: root/src/lang/interpreter.clj (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-12-07Cleaned up a lot of useless code and removed the state monad from the ↵Eduardo Julian1-224/+0
compilation phase (the ASM library already works as a state monad).
2014-12-01* Time to start compiling...Eduardo Julian1-6/+50
2014-11-29+ Added simple let expressions. (No destructuring of tuples/records yet)Eduardo Julian1-1/+28
+ Added records and simple operations on them (get, set & remove).
2014-11-29+ Added floats.Eduardo Julian1-32/+11
+ Added def for constants.
2014-11-27+ Added some very basic pattern-matching with destructuring.Eduardo Julian1-7/+14
2014-11-26+ Can now define functions.Eduardo Julian1-23/+75
% However, they currently access Clojure's environment, instead of the interpreter's.