1 2 3 4 5 6 7 8 9 10 11
fn u(x: int) { if x < 10 && x != 0 { return true; } else if x > 10 { return false; } if x == 0 { return "zero"; } }