An open API service indexing awesome lists of open source software.

https://github.com/8dcc/tinylisp

Simple Lisp REPL in C
https://github.com/8dcc/tinylisp

interpreter lisp repl tinylisp

Last synced: 4 months ago
JSON representation

Simple Lisp REPL in C

Awesome Lists containing this project

README

        

#+title: TinyLisp
#+options: toc:nil
#+startup: showeverything
#+export_file_name: ./doc/README.md
#+author: 8dcc

*Simple Lisp REPL in C.*

#+TOC: headlines 2

* Description
This project is heavily inspired by [[https://github.com/Robert-van-Engelen/tinylisp][Robert-van-Engelen/tinylisp]] and
[[https://raw.githubusercontent.com/Robert-van-Engelen/tinylisp/main/tinylisp.pdf][his amazing article]]. Please check them out if you are interested in how this
project was made.

#+begin_quote
*Note*
This project is still work in progress.
#+end_quote

* Building

#+begin_src console
$ git clone https://github.com/8dcc/tinylisp
$ cd tinylisp
$ make
...
#+end_src

* Usage

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