1 2 3 4 5 6 7 8 9
//! Entrypoint for the clawsh shell. use clawsh::Shell; fn main() -> clawsh::Result<()> { let mut shell = Shell::setup()?; shell.run(); shell.exit()?; Ok(()) }