/go-lisp

An example lisp interpreter to learn Go

Primary LanguageGo

go-lisp

An example Lisp interpreter to learn Go

How to run

go run .

Example programs

(- 3)
(* 1 2 4 8)
(+ 1 (- 3 1) 3)
(< 1 2 3)
(begin (define x 123) (if (= x 123) 72 42))