A mini Lisp interpreter in TypeScript.
Supports lists (obvs), function invocation, lambdas, lets, if statements, numbers, strings
and the library functions first
, rest
and print
.
$ npm start
(first (1 2 3))
(add 1 2 3)
$ git clone https://github.com/HectorIFC/hc-lisp.git
$ cd hc-lisp
$ npm i
$ npm start
- Create unit tests
- ...