scheme4r 0.2.3

Scheme interpreter for rust
Documentation
1
2
3
4
5
6
7
8
9
pub mod api;
pub mod error;
pub mod eval;
pub mod reader;
pub mod runtime;

pub use api::{eval, interpreter, BuiltinRegistry, Scheme};
pub use error::{ErrorKind, SchemeError};
pub use runtime::{BuiltinFn, EnvRef, Environment, NativeFn, SchemeString, Value};