Brijesh's Git Server — bsh @ 4a881edf07a45d2a03f1f47ef5be6886acc8c883

my own shell program

src/main.rs (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
#![allow(unused)]

mod colours;
mod error;
mod executor;
mod parser;
mod shell;
mod tests;
mod utils;

fn main() -> Result<(), error::ShellError> {
    let mut shell = shell::Shell::new();
    shell.run()?;
    Ok(())
}