https://github.com/bigbv/lispy-rs
Rust implementation of http://www.buildyourownlisp.com
https://github.com/bigbv/lispy-rs
language lisp rust
Last synced: 2 months ago
JSON representation
Rust implementation of http://www.buildyourownlisp.com
- Host: GitHub
- URL: https://github.com/bigbv/lispy-rs
- Owner: bIgBV
- Created: 2018-08-03T03:56:28.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-13T02:03:32.000Z (almost 7 years ago)
- Last Synced: 2025-02-10T08:32:39.429Z (4 months ago)
- Topics: language, lisp, rust
- Language: Rust
- Size: 48.8 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lispy-rs
This is an implmentation of the book www.buildyourownlisp.com . I wanted to see
how experience of writing a simple language in rust would be like. Right now
the langauage only has variables, and runs only in a REPL. I plan on seeing how
far I can take this project by including things like a simple type system and
a garbage collector.