notcurses 3.2.3

A high level Rust wrapper for the notcurses C library
Documentation
1
2
3
4
5
6
7
8
9
use notcurses::*;

fn main() -> Result<()> {
    let mut nc = Notcurses::new_cli()?;
    let mut cli = nc.cli_plane()?;
    cli.putstrln("\nhello world!")?;
    cli.render()?;
    Ok(())
}