1
2
3
4
5
6
7
8
9
10
11
use win_msgbox::{w, Okay, Result};

fn main() -> Result<()> {
    win_msgbox::information::<Okay>(w!(
        "This is some longer paragraph to demonstrate how\nthe text is right justified."
    ))
    .right()
    .title(w!("Cool Demo App"))
    .show()?;
    Ok(())
}