Files
moxa/_test/run11.go

11 lines
100 B
Go

package main
func main() {
println(f())
}
func f() (int, int) { return 2, 3 }
// Output:
// 2 3