1 2 3 4 5 6 7 8
use winmsg::{message_box, Options}; fn main() { message_box(Options { title: "Hello world!".into(), description: "How are you?".into(), ..Default::default() }); }