1 2 3 4 5 6 7 8 9 10 11 12
fn add(a: u64, b: u64) -> u64 { let sum = a + b; match sum { 0 => 0, _ => sum, } } struct Point { x: u64, y: u64, }