yacll 0.6.1

Yet Another Curses-Like Library
Documentation
1
2
3
4
5
6
7
8
9
10
use yacll::Yogurt;

fn main() -> yacll::Result<()> {
    let mut y = Yogurt::new();
    // does not add newline
    y.print("Hello, world!\n")?;
    // flush the buffer (print just queues things for execution)
    y.flush()?;
    Ok(())
}