use std::process::exit; /// exit /// /// The builtin `exit` command. Used to quit the shell. /// /// # Aliases /// * exit /// * quit pub fn incant() -> i32 { exit(0); }