cursive/examples/hello_world.rs
Alexandre Bury 8acc08f340 Rustfmt
2018-06-10 23:29:19 -07:00

21 lines
391 B
Rust

extern crate cursive;
use cursive::views::TextView;
use cursive::Cursive;
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();
}