Menu
×
×
Correct!
Exercise:Fill in the missing parts to create three variables of the same type. The three variables should have the following values: 5, 10, and 15.
package main
import ("fmt")
func main() {
var x, y, z = 5, 10, 15
fmt.Println(x, y, z)
}
Not CorrectClick here to try again. Correct!Next ❯package main import ("fmt") func main() { var, , = , , fmt.Println(x, y, z) } |