tel/
tel.rs

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