RosettaCodeData/Task/Call-a-function/Go/call-a-function-9.go
2023-07-01 13:44:08 -04:00

4 lines
207 B
Go

a, b := f() // multivalue return
_, c := f() // only some of a multivalue return
d := g(a, c) // single return value
e, i := g(d, b), g(d, 2) // multiple assignment