summaryrefslogtreecommitdiff
path: root/samples/p06
blob: 88029cce5210f07b84d093b6c5f48577fbb63f23 (plain)
1
2
3
4
5
6
7
func f(i int) {
	if i < 2 { return }
	println("i > 1:", i)
}

f(1)
println("bye")