stak_native/
lib.rs

1
2
3
4
5
6
7
8
9
//! Stak Scheme primitive sets for optimized primitives of native functions.

#![no_std]

mod list;
mod type_check;

pub use list::*;
pub use type_check::*;