Skip to content
Scheme Interpreter in Rust
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
src
.gitignore
Cargo.lock
Cargo.toml
LICENSE
README.md

README.md

lisp.rs

lis.py ported to rust

jsdf:lisp_rs jfriend🔥  cargo run

lisp.rs> (+ 2 2)
=> 4
lisp.rs> (begin (define r 10) (* pi (* r r))) 
=> 314.1592653589793
lisp.rs> (if (> 10 20) (+ 1 1) (+ 3 3))
=> 6
You can’t perform that action at this time.