notcurses/rust/examples/full-basics.rs
joseLuís 8e5e60f588 rust: Continue with poc-menu example.
- add NcPlane.pustr_aligned() method.
- disable notcurses_stddim_yx* functions & methods for now.
- make input argument optional for notcurses_getc_nblocking().
- update full-basics example.
- fix comments.
2020-12-30 18:40:54 +01:00

19 lines
391 B
Rust

use libnotcurses_sys::*;
fn main() -> NcResult<()> {
let nc = Notcurses::new()?;
let stdplane = nc.stdplane()?;
let p1 = NcPlane::new(nc, 0, 0, 20, 30);
for ch in "Initializing cells...".chars() {
let cell = NcCell::with_char7b(ch);
stdplane.putc(&cell)?;
sleep![0, 40];
nc.render()?;
}
sleep![0, 900];
nc.stop()?;
Ok(())
}