stak-engine 0.12.17

Stak Scheme scripting engine for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Stak Scheme scripting engine for Rust.

#![no_std]

mod engine;
mod error;
mod primitive_set;

pub use engine::*;
pub use error::*;