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(()) }