https://github.com/ltabis/d-lisp
An implementation of Lisp in C
https://github.com/ltabis/d-lisp
lisp-interpreter programming-language
Last synced: 19 days 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 (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-06T08:53:16.000Z (almost 3 years ago)
- Last Synced: 2025-10-11T13:48:26.629Z (4 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.