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

https://github.com/cafe-engine/coffee

a tiny lisp based language
https://github.com/cafe-engine/coffee

cafe cafe-engine coffee language lisp tiny vm

Last synced: 2 months ago
JSON representation

a tiny lisp based language

Awesome Lists containing this project

README

          

# Coffee

Coffee is a tiny lisp based language

```lisp
(= 'a (* 10 5))
(print (+ a 10))
```

### References and Inspirations

- [fe](https://github.com/rxi/fe/) *by* [@rxi](https://github.com/rxi/)
- [wren](https://github.com/wren-lang/wren) *by* [@munificent](https://github.com/munificent)
- [crafting interpreters](https://craftinginterpreters.com/)
- [baby's first garbage collector](journal.stuffwithstuff.com/2013/12/08/babys-first-garbage-collector/)