biir 1.0.0

Brainfuck Interpreter In Rust
Documentation
use clap::{App, Arg};
use std::process;

use biir::parser::Parser;

fn main() {
    let args = App::new("BIIR")
        .version("1.0")
        .author("Maks Rawski <maksymilian.rawski@tutanota.com>")
        .about("Brainfuck Interpreter In Rust")
        .arg(Arg::with_name("file")
            .required(true)
        )
        .arg(Arg::with_name("debug")
            .short("d")
            .long("debug-mode")
            .help("Allows the usage of `!TAPE` to print 10 nearby tape values,\nwill also print some debug info at the end")
        )
        .arg(Arg::with_name("numerical")
            .short("n")
            .long("numerical-mode")
            .help("Prints byte values instead of their ascii representations")
        )
        .get_matches();

    let mut parser = Parser::new();
    let file = args.value_of("file").unwrap();
    let numerical_mode = args.is_present("numerical");
    let debug_mode = args.is_present("debug");

    if let Err(e) = parser.run(file, numerical_mode, debug_mode) {
        eprintln!("{}", e);
        process::exit(1);
    }
}