rust/src/lib.rs

10 lines
151 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 00:48:23 -06:00
mod memory;