summaryrefslogtreecommitdiff
path: root/test.lang
blob: b409560a1f2ddad4d9d58766a1c61466b2f8ff7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*func main(a, b i64) i64 {
	let x i64 = 0, y bool = true
	if a <> 0 {
		x := 1
	}
	return x + a
}*/

func one i64 {
	return 1
}

func main(a, b i64) i64 {
	return a & a & b & a & b & b & b
}