In all the variable and constant declarations below, is type inference used? If not, which declarations use type inference? (1) var num1 = 100 (2) var num2 = num1
(3) num1 := 100 (4) num2 := num1 (5) const num1 = 100 (6) const num2 = num1 -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
