1
2
3
4
5
6
7
8
9
10
11
12
13
//! Primitive sets.
//!
//! This crate provides [`PrimitiveSet`](stak_vm::PrimitiveSet)s to run basic
//! programs in Scheme.

#![no_std]

#[cfg(feature = "std")]
extern crate std;

mod small;

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