mirror of
https://github.com/dankamongmen/notcurses
synced 2025-04-05 06:10:04 -04:00
- 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.
19 lines
391 B
Rust
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(())
|
|
}
|