fn main() { let num = 10 if num > 5 { return num } else if num <= 5 { return 1 } }