yom 0.1.8

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