6 lines
89 B
Go
6 lines
89 B
Go
package main
|
|
|
|
func f(i int) (o int) { o = i + 1; return }
|
|
|
|
func main() { println(f(4)) }
|