https://github.com/ltabis/d-lisp
🥧 An implementation of Lisp in C.
https://github.com/ltabis/d-lisp
lisp-interpreter programming-language
Last synced: about 2 months ago
JSON representation
🥧 An implementation of Lisp in C.
- Host: GitHub
- URL: https://github.com/ltabis/d-lisp
- Owner: ltabis
- License: mit
- Created: 2023-01-22T16:51:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-06T08:53:16.000Z (about 2 years ago)
- Last Synced: 2025-04-01T21:53:37.735Z (about 2 months ago)
- Topics: lisp-interpreter, programming-language
- Language: C
- Homepage:
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# d-lisp
An toy implementation of a custom Lisp language using C, based on the wonderful [Build Your Own Lisp book](https://buildyourownlisp.com/), that you can buy [here](https://www.amazon.com/Build-Your-Lisp-Daniel-Holden/dp/1501006622).
Time to cook.
## Build
```bash
make
```## Run
Running the interpreter.
```bash
./d-lisp
> say "Hello World!"
```Evaluating files.
```bash
./d-lisp hello-world.dlsp fibonacci.dlsp
```## Documentation
Check the examples directory to have an overview of the features of the language.