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
- Host: GitHub
- URL: https://github.com/cafe-engine/coffee
- Owner: cafe-engine
- License: mit
- Created: 2021-02-26T18:16:14.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-03T20:23:23.000Z (about 5 years ago)
- Last Synced: 2025-12-13T23:19:51.210Z (6 months ago)
- Topics: cafe, cafe-engine, coffee, language, lisp, tiny, vm
- Language: C
- Homepage:
- Size: 32.2 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/)