func main(a, b i64) i64 { if a = b { let t = a a := b b := t } else { a := 5 b := 10 if a = b { let t = a a := b b := t } } return a + b }