main() {
	n := 10
	x := 1

	loop {
		if n == 0 {
			return
		}

		f(x)
		n -= 1
	}
}

f(x Int) -> Int {
	return x
}