10 lines
115 B
Rust
10 lines
115 B
Rust
mod instruction;
|
|
mod vm;
|
|
mod repl;
|
|
|
|
use repl::REPL;
|
|
|
|
fn main() {
|
|
let mut repl = REPL::new();
|
|
repl.run();
|
|
}
|