cursive/examples/hello_world.rs

19 lines
368 B
Rust
Raw Normal View History

use cursive::views::TextView;
2018-06-11 06:29:10 +00:00
use cursive::Cursive;
2015-05-09 19:18:25 +00:00
fn main() {
let mut siv = Cursive::default();
2015-05-09 19:18:25 +00:00
2016-08-02 07:32:16 +00:00
// We can quit by pressing `q`
siv.add_global_callback('q', Cursive::quit);
2015-05-09 19:18:25 +00:00
2018-01-16 02:55:27 +00:00
// Add a simple view
2017-10-12 23:38:55 +00:00
siv.add_layer(TextView::new(
"Hello World!\n\
Press q to quit the application.",
));
2015-05-15 23:06:48 +00:00
2018-01-16 02:55:27 +00:00
// Run the event loop
2015-05-09 19:18:25 +00:00
siv.run();
}