1//! Stak Scheme primitive sets for optimized primitives of native functions. 2 3#![no_std] 4 5mod arithmetic; 6mod equal; 7mod list; 8mod type_check; 9 10pub use arithmetic::*; 11pub use equal::*; 12pub use list::*; 13pub use type_check::*;