cursive/examples/hello_world.rs
2018-04-01 16:39:03 -07:00

21 lines
391 B
Rust

extern crate cursive;
use cursive::Cursive;
use cursive::views::TextView;
fn main() {
let mut siv = Cursive::default();
// We can quit by pressing `q`
siv.add_global_callback('q', Cursive::quit);
// Add a simple view
siv.add_layer(TextView::new(
"Hello World!\n\
Press q to quit the application.",
));
// Run the event loop
siv.run();
}