// variables4 // Make me compile! package main import "fmt" func main() { x := "TEN" // Don't change this line fmt.Printf("x has the value %s", x) if true { var x = 1 fmt.Println(x + 1) } fmt.Println(x) }