nocurses_rust 0.2.1

Simple terminal library ported from nocurses.h
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate nocurses_rust;

fn main() {
    nocurses_rust::clrscr();
    println!("hit enter");
    nocurses_rust::wait();

    println!("now give me a character");
    let c = nocurses_rust::getch().expect("could not get character");
    println!("your character was: {}", c);
}