Files
moxa/_test/fun14.go
2020-05-03 18:32:04 +02:00

14 lines
158 B
Go

package main
func f() (bool, int) { return true, 2 }
func g() (bool, int) { return f() }
func main() {
b, i := g()
println(b, i)
}
// Output:
// true 2