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
9
10
use std::io::Write;
                            
/// ██████ ▄█████ ██  ██ ▄████▄ 
/// ██▄▄   ██     ██████ ██  ██ 
/// ██▄▄▄▄ ▀█████ ██  ██ ▀████▀             
/// Standard shell `echo`
#[inline]
pub fn echo<W: Write>(str: &str, out: &mut W) {
    let _ = write!(out, "{str}\n");
}