jackhill/mal.git
2016-08-28 Iqbal AnsariCompile clisp files before running
2016-08-28 Iqbal AnsariMove exports from types package to the top
2016-08-28 Iqbal AnsariUse singleton values for nil, true and false
2016-08-28 Iqbal AnsariAvoid creating unnecessary symbols for special froms...
2016-08-28 Iqbal AnsariMake sure dependencies are loaded only once
2016-08-28 Iqbal AnsariCoerce results of division to a non fractional value
2016-08-28 Iqbal AnsariUse find-env instead of get-env in is-macro-call
2016-08-28 Iqbal AnsariCleanup mal-value=
2016-08-28 Iqbal AnsariStore symbols as strings
2016-08-28 Iqbal AnsariRename mal-type to mal-data
2016-08-28 Iqbal AnsariUse maphash to print hash-tables
2016-08-28 Iqbal AnsariUse compiled string and digit regular expressions
2016-08-28 Iqbal AnsariUse compiled regex instead of raw ones
2016-08-27 Iqbal AnsariTrying out defstruct instead of defclass for MAL types
2016-08-27 Iqbal AnsariOptimize tokenizer a bit
2016-08-27 Iqbal AnsariAdd travis config for clisp, also add stats target...
2016-08-27 Iqbal AnsariRename common_lisp to clisp
2016-08-27 Iqbal AnsariMake mal-errors catchable, self hosting is now complete
2016-08-27 Iqbal AnsariImplement step A
2016-08-27 Iqbal AnsariImplement all core functions required for step 9, compl...
2016-08-27 Iqbal AnsariAdd nil?, true?, false? and symbol?
2016-08-27 Iqbal AnsariAdd 'apply' and 'map' core functions
2016-08-27 Iqbal AnsariAdd throw core function
2016-08-27 Iqbal AnsariAdd try* special form
2016-08-27 Iqbal AnsariIntroduce types mal-runtime-exception and mal-user...
2016-08-27 Iqbal AnsariImprove error handling
2016-08-27 Iqbal AnsariImplement or and cond macros, completes step 8
2016-08-27 Iqbal AnsariImplement nth, first and rest
2016-08-27 Iqbal AnsariAdd support for macros and macro expansion
2016-08-27 Iqbal AnsariImplement quasiquote, completes step 7
2016-08-27 Iqbal AnsariAdd cons and concat
2016-08-27 Iqbal AnsariAdd unwrap value to convert from mal type to native...
2016-08-27 Iqbal AnsariEval keys of hash-map as well
2016-08-27 Iqbal AnsariAdd *ARGV*, completes step 6
2016-08-27 Iqbal AnsariAdd all required atom functions
2016-08-27 Iqbal AnsariFix reading of quotes
2016-08-27 Iqbal AnsariAdd atom type
2016-08-27 Iqbal AnsariAdd load-file function
2016-08-27 Iqbal AnsariAdd `eval` builtin
2016-08-27 Iqbal AnsariHandle non-mal datatypes in mal-value=
2016-08-27 Iqbal AnsariImplement slurp and read-string
2016-08-27 Iqbal AnsariImplement tail calls for functions, completes step 5
2016-08-27 Iqbal AnsariImplement tail calls for 'let*', 'if' and 'do'
2016-08-27 Iqbal AnsariImplement print_readably, completes step 4
2016-08-27 Iqbal AnsariImplement equality between vectors and list
2016-08-27 Iqbal AnsariImplement `not` in MAL
2016-08-27 Iqbal AnsariTreat nil as a list in list?
2016-08-27 Iqbal AnsariAdd support for variadic arguments
2016-08-27 Iqbal AnsariMake sure the REPL does not crash on unknown errors
2016-08-27 Iqbal AnsariFix wrapping of Common Lisp value into MAL values
2016-08-27 Iqbal AnsariTeach mal-value= to compare list and hash-maps
2016-08-27 Iqbal AnsariUse symbol name while comparing mal-symbols
2016-08-27 Iqbal AnsariInitial attempt at adding core functions required for...
2016-08-27 Iqbal AnsariImplement fn*, do and let*
2016-08-27 Iqbal AnsariAllow specifying initial set of bindings while creating...
2016-08-27 Iqbal AnsariAdd support for printing functions
2016-08-27 Iqbal AnsariImplement step 3 (environment)
2016-08-27 Iqbal AnsariAdd mal-environment class
2016-08-27 Iqbal AnsariUpdate apply-unwrapped-values to also wrap the result...
2016-08-27 Iqbal AnsariComplete implmentation of step 2 (eval)
2016-08-27 Iqbal AnsariAdd printer for built-in functions
2016-08-27 Iqbal AnsariExport predicates for checking MAL types from types...
2016-08-27 Iqbal AnsariTeach MAL about number signs
2016-08-27 Iqbal AnsariChange the way meta is handled
2016-08-27 Iqbal AnsariSupport clause any in switch-mal-type to execute form...
2016-08-27 Iqbal AnsariRemove the need to quote symbols in switch-mal-type
2016-08-27 Iqbal AnsariRemove obsolete 'add-mal-meta' function
2016-08-27 Iqbal AnsariExport MAL types and MAL accessors from types package
2016-08-27 Iqbal AnsariExport eof error from reader
2016-08-27 Iqbal AnsariMake sure last duplicate entry override first entry...
2016-08-27 Iqbal AnsariAdd support for reading print metadata associated with...
2016-08-27 Iqbal AnsariFix printing of vectors, use fully qualified symbol...
2016-08-27 Iqbal AnsariAdd switch-mal-type, use it select printing strategy
2016-08-27 Iqbal AnsariExpand quote, quasiquote, unquote and splice-unquote
2016-08-27 Iqbal AnsariAdd support for reading and printing keywords
2016-08-27 Iqbal AnsariAdd support for reading and printing hash-maps
2016-08-27 Iqbal AnsariUse fully qualified symbol names printer switch
2016-08-27 Iqbal AnsariRefactor reading and printing of vectors and lists
2016-08-27 Iqbal AnsariCorrectly report unterminated strings
2016-08-27 Iqbal AnsariImprove error reporting for EOF errors
2016-08-27 Iqbal AnsariTeach MAL to read and print vectors
2016-08-27 Iqbal AnsariFix tokenizer regex to treat [] as two separate tokens...
2016-08-27 Iqbal AnsariImplementation of step1 without the optional functionality
2016-08-27 Iqbal AnsariAdd common-lisp step0
2016-08-25 Joel MartinPowerShell: add missing Makefile.
2016-08-24 Joel MartinFix step4 case sensitivity test.
2016-08-24 Joel MartinPowerShell: add to Travis build.
2016-08-24 Joel MartinREADME: add PowerShell, implementation 58.
2016-08-24 Joel Martintests: additional tests based on PowerShell impl
2016-08-24 Joel MartinPowerShell: steps 4-A, optional, and self-hosting
2016-08-20 Joel MartinPowerShell: steps 0-3
2016-08-09 Joel MartinMerge pull request #229 from wasamasa/chuck-implementation
2016-08-09 Vasilij SchneidermannAdd basic Makefile
2016-08-09 Vasilij SchneidermannAdd chuck to Travis builds
2016-08-09 Vasilij SchneidermannAdd Dockerfile fixes and change runner to bash
2016-08-08 Vasilij SchneidermannSupport backspace in readline implementation
2016-08-07 Vasilij SchneidermannMention in README
2016-08-07 Vasilij SchneidermannMove run_chuck.rb to run
2016-08-06 Vasilij SchneidermannRemove temp file
2016-08-06 Vasilij SchneidermannAdd run script, fix argv bug
next