Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aap/l15
A simple interpreter of LISP 1.5
https://github.com/aap/l15
interpreter lisp
Last synced: 8 days ago
JSON representation
A simple interpreter of LISP 1.5
- Host: GitHub
- URL: https://github.com/aap/l15
- Owner: aap
- License: mit
- Created: 2018-08-18T09:30:37.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-10T15:55:30.000Z (almost 4 years ago)
- Last Synced: 2024-11-17T17:43:34.205Z (2 months ago)
- Topics: interpreter, lisp
- Language: C
- Homepage:
- Size: 22.5 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeInterpreter - l15
README
# LISP 1.5
This is an implementation of LISP 1.5 as described by the manual.
I have not slavishly implemented everything and some things
may be incomplete. Please open issues if things are missing.## Build
Just type `make`.
## How to use
By default you're talking to an `eval` REPL. e.g.
```
% ./lisp
*
(car (quote (a b)))
A
```By passing the `-q` option you get an `evalquote` REPL as decribed
in the LISP manual. e.g.```
% ./lisp -q
*
car ((a b))
A
```## To-Do
* Implement more useful things
* Arrays
* Assembler (and compiler?)
* some code examples