1
2
3
4
5
6
fn main() {
    robius_open::Uri::new("tel:+61 0400 000 000")
        .action("ACTION_DIAL")
        .open()
        .unwrap();
}