notcurses 3.6.0

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

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