noterm 0.2.3

noterm, a no_std terminal handler.
Documentation
1
2
3
4
5
fn main() {
    let mut output = String::new();
    let count = 10;
    noterm::print!(output, "hello {} {}", count, "world");
}