bnb-shell 0.1.0

A fast, polished, cross-platform terminal shell built in Rust with Powerlevel10k aesthetics.
1
2
3
4
5
6
use std::process;

pub fn run(args: &[String]) -> ! {
    let code = args.first().and_then(|s| s.parse::<i32>().ok()).unwrap_or(0);
    process::exit(code);
}