summaryrefslogtreecommitdiffstats
path: root/src/poem/anthology/exit.rs
blob: 6bbaa3338545d1d03d21a60c4bd5060d354353e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
}