summaryrefslogtreecommitdiff
path: root/test.lang
blob: 8a000c7c9f2d57be9c1c040f42a7de150501e65b (plain)
1
2
3
4
5
6
7
8
func main(a, b i64) i64 {
	if a < b {
		let t = a
		a := b
		b := t
	}
	return a + b + 3
}