1 2 3 4 5 6 7 8 9
func main(a, b i64) i64 { if a < b { a := 4 } else { a := 2 b := 5 } return a + b }