ttvm 0.3.6

Runtime and compiler infrastructure API for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[macro_use] extern crate text_io;

pub mod mem;
pub mod byte;
pub mod exec;
pub mod io;
pub mod stack;
pub mod opcode;

pub use mem::*;
pub use byte::*;
pub use exec::*;
pub use io::{*, Handle::*};
pub use stack::*;
pub use opcode::*;

#[cfg(test)]
mod tests;