summaryrefslogtreecommitdiff
path: root/test.lang
blob: 52e100b7b4263dc760b68cf0e22c0b89550d2993 (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 / x)
	} else {
		x := 4 + (x * b)
	}
	return x
}