1package yesFuncsNoTests
2
3func F1() {
4	println("hi")
5}
6
7func F2(x int) int {
8	if x < 0 {
9		return 9
10	} else {
11		return 10
12	}
13}
14