blob: 6dbeb8d5a1d654a39f5f4b5d80ff5f85a5a61436 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright (C) 2019 Robin Krahl <robin.krahl@ireas.org>
// SPDX-License-Identifier: MIT
use dialog::backends;
use dialog::DialogBox;
fn main() -> dialog::Result<()> {
let backend = backends::Stdio::new();
dialog::Message::new("This is a message.")
.title("And this is a title:")
.show_with(&backend)
}
|