This repository has been archived on 2025-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
corten/src/main.rs

11 lines
115 B
Rust
Raw Normal View History

mod instruction;
mod vm;
mod repl;
use repl::REPL;
2020-02-06 16:37:23 -05:00
fn main() {
let mut repl = REPL::new();
repl.run();
2020-02-06 16:37:23 -05:00
}