https://github.com/danthelion/selyp
A Lisp interpreter implemented in C.
https://github.com/danthelion/selyp
c c99 lisp lisp-dialect lisp-interpreter
Last synced: 6 months ago
JSON representation
A Lisp interpreter implemented in C.
- Host: GitHub
- URL: https://github.com/danthelion/selyp
- Owner: danthelion
- Created: 2017-10-13T14:19:32.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-12T08:43:04.000Z (over 7 years ago)
- Last Synced: 2024-08-03T18:15:58.551Z (9 months ago)
- Topics: c, c99, lisp, lisp-dialect, lisp-interpreter
- Language: C
- Homepage:
- Size: 34.2 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- AwesomeInterpreter - selyp
README
# Selyp
A Lisp interpreter implemented in C.
Based on http://www.buildyourownlisp.com.
## Dependencies
* https://github.com/orangeduck/mpc
## Build
### macOS
```
$ cc -std=99 -Wall selyp.c mpc.c -leddit -o selyp
```
## Run
```
$ ./selyp
> load "stdlib.selyp"
```