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