xmachine 0.2.1

A fast, cross platform virtual machine implemented in Rust without the Standard Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![no_std]
#[macro_use]
extern crate alloc;
use alloc::rc::Rc;

pub type Ref<T> = Rc<T>;

mod value;
pub use value::Value;

mod machine;
pub use machine::Machine;

mod function;
use function::Function;