Skip to content

Releases: 8dcc/sl

Version 0.1.0

26 Oct 08:23
122d9f4
Compare
Choose a tag to compare
Version 0.1.0 Pre-release
Pre-release

Basic Lisp programming can be done easily. Manual is almost finished.

Things left to do:

  • Bad error handling, just prints to stderr.
  • No cons pair support. Only simple linked lists of expressions, cdr is always a list.
  • Bad memory management; nothing is passed by reference, instead everything is duplicated. No garbage collection. Could use a pool allocator.
  • No tail-call optimization (see README).
  • No proper closures (see README).