use libnotcurses_sys::*; fn main() -> NcResult<()> { let nc = Notcurses::new()?; let stdplane = nc.stdplane()?; 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(()) }