https://github.com/matsubara0507/dlisp
Pure Lisp on D Language
https://github.com/matsubara0507/dlisp
dlang lisp-interpreter
Last synced: 3 months ago
JSON representation
Pure Lisp on D Language
- Host: GitHub
- URL: https://github.com/matsubara0507/dlisp
- Owner: matsubara0507
- License: mit
- Created: 2016-11-22T03:49:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-06T02:24:00.000Z (about 8 years ago)
- Last Synced: 2025-02-02T18:47:02.971Z (5 months ago)
- Topics: dlang, lisp-interpreter
- Language: D
- Homepage:
- Size: 26.4 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## D Lisp
Pure Lisp on D Language.
Implemented based on OOP.
Implement the closure to use lazy evaluation.
## Run
Sorry, maybe...
```
$ dmd -ofplisp *.d ./**/*.d ./**/**/*.d
$ ./plisp
dlisp>> (+ 1 1)
2
dlisp>> (load test.txt)
...
```## Docker
```
$ docker pull matsubara0507/dlisp
$ docker run -it --rm dlang plisp
```