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
- Host: GitHub
- URL: https://github.com/8dcc/tinylisp
- Owner: 8dcc
- License: gpl-3.0
- Created: 2023-04-20T16:52:15.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-10T19:54:38.000Z (over 1 year ago)
- Last Synced: 2025-02-23T12:14:32.156Z (4 months ago)
- Topics: interpreter, lisp, repl, tinylisp
- Language: C
- Homepage:
- Size: 543 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
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