cursive/examples/hello_world.rs

15 lines
280 B
Rust
Raw Normal View History

2015-05-09 19:18:25 +00:00
extern crate cursive;
use cursive::prelude::*;
2015-05-09 19:18:25 +00:00
fn main() {
let mut siv = Cursive::new();
2015-05-15 01:38:58 +00:00
// We can quit by pressing q
siv.add_global_callback('q', |s| s.quit());
2015-05-09 19:18:25 +00:00
2015-05-15 23:06:48 +00:00
siv.add_layer(TextView::new("Hello World!\nPress q to quit the application."));
2015-05-09 19:18:25 +00:00
siv.run();
}