Add basic Makefile
[jackhill/mal.git] / elixir /
2016-08-06 Vasilij SchneidermannMerge branch 'master' into chuck-implementation
2016-05-19 Joel MartinRefactor to use run scripts, remove *_RUNSTEP
2016-04-05 Joel MartinMerge pull request #194 from dubek/literal-empty-list
2016-04-04 Dov MurikMerge pull request #5 from zmower/literal-empty-list
2016-04-03 Dov MurikMerge pull request #4 from kanaka/issue194-literal...
2016-04-02 Joel MartinFix empty list eval in step2 for most languages.
2016-03-28 Dov Murikelixir: Fix exception on literal empty list
2016-03-20 Chris M MooreUpdate from master
2016-03-15 Joel MartinTests: move step5 non-TCO tests to per impl.
2016-03-02 Vasilij SchneidermannMerge branch 'master' into elisp
2016-02-24 Joel MartinMerge branch 'issue_166_string_ops' of github.com:kanak...
2016-02-24 Joel MartinMerge branch 'master' into issue_166_string_ops
2016-02-24 Joel Martinawk-es6, Makefile: dist ruiles
2016-02-21 Chris M MooreMerged master into ada branch + fix Makefile
2016-02-15 Joel MartinMerge pull request #173 from dubek/issue_166_beams
2016-02-15 Dov Murikelixir: add seq and string?
2016-02-04 Joel MartinMerge pull request #158 from dubek/first-rest-nil
2016-02-04 Dov Murikelixir, erlang, lua, php, r, vimscript: Fix (first...
2016-02-01 Joel MartinMerge pull request #163 from ekmartin/step_9_elixir_sof...
2016-02-01 ekmartinElixir: Make sure equals for maps has the correct list...
2016-01-29 Joel MartinMerge pull request #156 from omarrayward/explain-regexp...
2016-01-27 Joel MartinMerge pull request #155 from ekmartin/nested_equal_elixir
2016-01-27 ekmartinElixir: Fix nested list/vector equality
2016-01-26 Joel MartinMerge branch 'Haxe'
2016-01-26 Joel MartinMerge pull request #146 from dubek/fix-macro-eval
2016-01-26 Joel MartinMerge pull request #143 from dubek/add-gensym
2016-01-26 Dov Murikcrystal, elixir, erlang, factor, perl: fix macro result...
2016-01-23 Dov MurikAdd gensym and clean `or` macro to stepA of 13 implemen...
2015-10-31 Joel MartinAll: fix read/print of \\, and \n
2015-10-27 Javier Fernandez... Updated from master, solved conflicts
2015-10-27 Joel MartinAll: show comments with stats target.
2015-10-08 Joel MartinTravis: add remaining implementations.
2015-09-10 Joel MartinMerge pull request #82 from ekmartin/elixir_headers
2015-09-10 ekmartinOnly print header info in REPL mode
2015-09-10 Joel MartinMerge pull request #81 from ekmartin/elixir
2015-09-09 ekmartinUpdate README/Makefile/Dockerfile
2015-09-09 ekmartinAdd conj, all tests 0 to A passes
2015-09-09 ekmartinAdd support for atoms
2015-09-09 ekmartinChange core functions to be mal functions and add meta...
2015-09-09 ekmartinUse the new data structures in the other steps
2015-09-09 ekmartinUse a struct for functions
2015-09-09 ekmartinUse a tuple for lists too and add meta info to the...
2015-09-07 ekmartinAdd core readline and use it in all steps
2015-09-07 ekmartinChange all non exported functions from def -> defp
2015-09-07 ekmartinAdd map core functions, step 1 to 9 passing
2015-09-07 ekmartinAdd evaluating of hash-maps to steps 2 - 9
2015-09-07 ekmartinAdd reading and printing of hash-maps
2015-09-07 ekmartinAdd support for vectors in all steps
2015-09-07 ekmartinFix keyword representation and add more core functions
2015-09-07 ekmartinAdd apply, symbol? nil? true? and false?
2015-09-07 ekmartinAdd try*/catch and map
2015-09-07 ekmartinAdd support for nth, first, rest, cond, or and macroexpand
2015-09-06 ekmartinAdd support for defmacro!
2015-09-06 ekmartinRely more on Kernel.inspect for printing
2015-09-06 ekmartinAdd quote and quasiquote support
2015-09-06 ekmartinAdd cons and concat to core
2015-09-06 ekmartinAdd support for load-file, eval and *ARGV*
2015-09-06 ekmartinExit with code 0 on EOF
2015-09-06 ekmartinAdd read-string and slurp
2015-09-06 ekmartinMake sure eval of do is in tail position and skip step 5
2015-09-05 ekmartinUse print_readably correctly for lists
2015-09-05 ekmartinAdd support for variable length arguments
2015-09-05 ekmartinAdd not and printing functions
2015-09-05 ekmartinImplement core functions
2015-09-05 ekmartinPass args to namespace as a list
2015-09-05 ekmartinAdd support for fn*
2015-09-05 ekmartinAdd if support
2015-09-05 ekmartinAdd do support
2015-09-05 ekmartinSupport multiple let* binding clauses
2015-09-05 ekmartinImplement basic let* functionality (one pair)
2015-09-05 ekmartinAdd support for def!
2015-09-04 ekmartinStep 2 using agent as env
2015-09-04 ekmartinFinish step 2, no optional functionality
2015-09-04 ekmartinUse throw/catch for cleaner code
2015-09-04 ekmartinAdd support for deref and meta
2015-09-04 ekmartinAdd print_readably
2015-09-03 ekmartinAdd reader support for all quote types
2015-09-03 ekmartinAdd read/print functionality up to quote (step 1)
2015-09-02 ekmartinAdd elixir step0