// variables6 // Make me compile! // I AM NOT DONE package main import "fmt" const x = 10 func main() { fmt.Println(x) x = x + 1 fmt.Println(x) }