yom 0.0.1

A modern, easy to install competitor to the dash shell, built solely to execute files.
1
2
3
4
5
use std::io::Write;

pub fn main<W: Write>(str: &str, out: &mut W) {
    let _ = write!(out, "{str}\n");
}