mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-10 03:10:41 +00:00
a8c8855831
And add it to Cargo.toml
16 lines
315 B
Rust
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();
|
|
}
|