stak_native/
lib.rs

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