×
×
Correct!
Use assignment operators to add 5 to x.
package main
import ("fmt")
func main() {
x:=1
x@(3)
fmt.Print(x)
}
package main
import ("fmt")
func main() {
x:=1
x+=5
fmt.Print(x)
}
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 28 exercises.
Are you sure you want to continue?