Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joajfreitas/flox
Bytecode interpreted LISP in Rust
https://github.com/joajfreitas/flox
lisp rust vm
Last synced: 11 days ago
JSON representation
Bytecode interpreted LISP in Rust
- Host: GitHub
- URL: https://github.com/joajfreitas/flox
- Owner: joajfreitas
- Created: 2021-10-26T22:15:30.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-09-25T19:53:24.000Z (over 1 year ago)
- Last Synced: 2024-12-03T17:53:51.295Z (2 months ago)
- Topics: lisp, rust, vm
- Language: Rust
- Homepage:
- Size: 222 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flox
Lisp interpreter implemented as a stack based bytecode virtual machine.
The implementation is based on the [Crafting Interpreters](https://craftinginterpreters.com/) book by Robert Nystrom.
## Running
```
cargo run --bin main
```## Tests
```
cargo test
```