fn main() -> i64 { let x = 99; match x { 1 => { print_i64(10); } 2 => { print_i64(20); } _ => { print_i64(999); } } return 0; }