cursive/examples/hello_world.rs
Alexandre Bury a8c8855831 Moved example to separate directory
And add it to Cargo.toml
2015-05-16 13:09:38 -07:00

16 lines
315 B
Rust

extern crate cursive;
use cursive::Cursive;
use cursive::view::TextView;
fn main() {
let mut siv = Cursive::new();
// We can quit by pressing q
siv.add_global_callback('q' as i32, |s,_| s.quit());
siv.add_layer(TextView::new("Hello World!\nPress q to quit the application."));
siv.run();
}