ram-machine 2.0.1

RAM machine code interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::process::exit;

use cli::app;

mod cli;

fn main() {
    match app() {
        Err(e) => {
            println!("{}", e);
            exit(1);
        }
        _ => (),
    }
}