Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 765 Bytes

File metadata and controls

38 lines (30 loc) · 765 Bytes

TinyLisp

Simple Lisp REPL in C.

Description

This project is heavily inspired by Robert-van-Engelen/tinylisp and his amazing article. Please check them out if you are interested in how this project was made.

Note This project is still work in progress.

Building

$ git clone https://github.com/8dcc/tinylisp
$ cd tinylisp
$ make
...

Usage

$ ./tinylisp.out
--- TinyLisp REPL ---
[925]> (+ 5 1)
6
[925]>