rlisp 0.2.0

experimental lisp interpreter in rust
Documentation
  • Coverage
  • 0%
    0 out of 1 items documented0 out of 0 items with examples
  • Size
  • Source code size: 14.49 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 959.18 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • mohsen-alizadeh

Rlisp

experimental lisp interpreter in rust

The goal of this project is to learn Rust basics and able to run follwing snippet only.

(let name "Mohsen")

(let marks (4 5 6))

(print name)

(print (+ marks))