scheme4r 0.1.0

Scheme interpreter for rust
Documentation
  • Coverage
  • 0%
    0 out of 4 items documented0 out of 1 items with examples
  • Size
  • Source code size: 55.97 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.15 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • sunxyz/scheme4r
    3 0 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • sunxyz

scheme4r

feature

  • Scheme for rust
  • Impl R7RS
  • No keyword can be customized to overwrite

Basic types

  • Numbers
  • Booleans
  • Pairs and lists
  • Symbols
  • Characters
  • Strings
  • Vectors
  • Bytevectors
  • Procedures
  • Records
  • Ports

use

  • Support cmd and api , can embeddable api
use scheme::eval;
let v = eval("(+ 1 2 3)");
println!("{}",v);

console

6

learn docs