yom 1.2.3

A modern, easy to install competitor to the dash shell, built solely to execute files.
1
2
3
4
5
6
7
8
/// ██████ ██  ██ ██ ██████ 
/// ██▄▄    ████  ██   ██   
/// ██▄▄▄▄ ██  ██ ██   ██   
/// Exits with given exit code
#[inline]
pub fn exit(code: i32) {
    std::process::exit(code);
}