summaryrefslogtreecommitdiff
path: root/test.lang
blob: e57f63023979f0770b6b58e6ebfaf56107677106 (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) xor b
}