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