×
×
Correct!
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 @(1), @(1), @(1) = @(1), @(2), @(2)
fmt.Println(x, y, z)
}
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! |
This will reset the score of ALL 28 exercises.
Are you sure you want to continue?