summaryrefslogtreecommitdiffstats
path: root/src/poem/anthology/exit.rs
blob: 46fe13c784cb0052a6e56012b59b21703af2c3b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use std::process::exit;

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