topmost/
topmost.rs

1use win_msgbox::{Okay, Result};
2
3fn main() -> Result<()> {
4    win_msgbox::information::<Okay>(
5        "This is some longer paragraph to demonstrate how\nthe text is right justified.",
6    )
7    .right()
8    .title("Cool Demo App")
9    .show()?;
10    Ok(())
11}