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

https://github.com/1player/axiom-lisp

A very simple Lisp interpreter, in Rust
https://github.com/1player/axiom-lisp

Last synced: about 1 month ago
JSON representation

A very simple Lisp interpreter, in Rust

Awesome Lists containing this project

README

          

Mum said it was my turn to write a Lisp.

This is meant to be a very simple Lisp interpreter I can use as a starting point for more advanced implementations.

## Features

- [ ] language docs
- [ ] test suite
- [x] REPL
- [x] multiline input
- [ ] cons data structure
- [x] define
- [x] quote
- [ ] let
- [x] car/cdr
- [x] basic integer functions
- [ ] equality
- [ ] basic boolean functions
- [ ] if
- [ ] closures
- [ ] quasiquote
- [ ] macros