An open API service indexing awesome lists of open source software.

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

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
```