https://github.com/shinkwhek/microlisp
A lisp interpreter
https://github.com/shinkwhek/microlisp
interpreter lisp lisp-interpreter programming-language readable
Last synced: 6 months ago
JSON representation
A lisp interpreter
- Host: GitHub
- URL: https://github.com/shinkwhek/microlisp
- Owner: shinkwhek
- License: mit
- Created: 2016-05-29T11:53:36.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-10-01T08:13:11.000Z (over 4 years ago)
- Last Synced: 2024-08-03T18:15:24.184Z (9 months ago)
- Topics: interpreter, lisp, lisp-interpreter, programming-language, readable
- Language: C
- Homepage:
- Size: 95.7 KB
- Stars: 12
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeInterpreter - microlisp
README
# microlisp
[](LICENSE)
Small LISP Interpreter.
## Documentation
This is a Lisp interpreter, which is so small, easy to read and understand. (no GC)
## BUILD
```console
$ cmake .$ make
```### RUN
```console
$ ./bin/lisp
```### TEST
```console
$ cat test.sh | bash
```### CLEAN
```console
$ make clean
```## Author
Shin KAWAHARA