1package main
2
3func main()       { println(f(5)) }
4func f(i int) int { return i + 1 }
5
6// Output:
7// 6
8