funct 0.1.0

A small, functional, embeddable scripting language with a fully reified bytecode VM you can pause, snapshot, and resume.
Documentation
1
2
3
4
5
6
fn main() {
    eprintln!(
        "size_of::<Value>      = {}",
        std::mem::size_of::<funct::Value>()
    );
}