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