stak_r7rs/
lib.rs

1
2
3
4
5
6
7
8
9
10
//! Stak Scheme primitive sets for R7RS.
//!
//! This crate provides [`PrimitiveSet`](stak_vm::PrimitiveSet)s that covers
//! R7RS.

#![no_std]

mod small;

pub use small::{Error as SmallError, SmallPrimitiveSet};