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
Anthony Foxclaw 263686902b REPL!
- Created a basic REPL that accepts hex code
- Commented a lot of the code
2020-02-06 23:13:00 -05:00

10 lines
115 B
Rust

mod instruction;
mod vm;
mod repl;
use repl::REPL;
fn main() {
let mut repl = REPL::new();
repl.run();
}