/ika

Lisp interpreter

Primary LanguagePythonGNU General Public License v2.0GPL-2.0

ika

Yet another LISP Interpreter.

Progress

DONE

  • Fake compiler.
  • Lambda function and Function apply.
  • begin, set!
  • Closure and Lexical scope.
  • call/cc and Tail recursion optimization.

TODO

  • macro
  • if, car, cdr, cons, pair?, atom?, ...

Example

(define a (lambda () (a)))
(a)
(define f (lambda (return) (return 2) 3))
(f (lambda (x) x)) ; => 3
(call/cc f) ; => 2