clawsh 0.4.0

A shell built in rust for codecrafters
Documentation
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(())
}