Re: [go-nuts] Question re fcns that return multiple values

2019-08-05 Thread Adrian Ho
On 6/8/19 11:38 AM, lgod...@gmail.com wrote: > For f1 defined as func f1(k1, k2, k3 int) (x1, x2 int) {..}  > and f2 defined as func f2(x,y int)           (xR int)       {..}  > > Why does the compiler complain about the call stmt  > f2 ( f1 (1,2,3)  )   ?? > It shouldn't. What little you posted is

Re: [go-nuts] Question re fcns that return multiple values

2019-08-05 Thread Jesse McNelis
On Tue, Aug 6, 2019 at 1:38 PM wrote: > For f1 defined as func f1(k1, k2, k3 int) (x1, x2 int) {..} > and f2 defined as func f2(x,y int) (xR int) {..} > > Why does the compiler complain about the call stmt > f2 ( f1 (1,2,3) ) ?? > I'm not sure what you're asking. The compiler

[go-nuts] Question re fcns that return multiple values

2019-08-05 Thread lgodio2
For f1 defined as func f1(k1, k2, k3 int) (x1, x2 int) {..} and f2 defined as func f2(x,y int) (xR int) {..} Why does the compiler complain about the call stmt f2 ( f1 (1,2,3) ) ?? -- You received this message because you are subscribed to the Google Groups "golang-nuts" g