mirror of
https://github.com/FliegendeWurst/cursive.git
synced 2024-11-10 03:10:41 +00:00
16 lines
317 B
Rust
16 lines
317 B
Rust
extern crate cursive;
|
|
|
|
use cursive::prelude::*;
|
|
|
|
fn main() {
|
|
let mut siv = Cursive::new();
|
|
|
|
// We can quit by pressing `q`
|
|
siv.add_global_callback('q', Cursive::quit);
|
|
|
|
siv.add_layer(TextView::new("Hello World!\n\
|
|
Press q to quit the application."));
|
|
|
|
siv.run();
|
|
}
|