rust/src/lib.rs

11 lines
164 B
Rust
Raw Normal View History

#![feature(rustc_private)]
extern crate byteorder;
extern crate rustc;
extern crate rustc_mir;
extern crate syntax;
pub mod interpreter;
2016-03-05 06:48:23 +00:00
mod memory;
mod primval;