04.03-常數(Constant)
package main
import "fmt"
func main() {
const x string = "Hello World"
fmt.Println(x)
} const x string = "Hello World"
x = "Some other string".\main.go:7: cannot assign to xLast updated
package main
import "fmt"
func main() {
const x string = "Hello World"
fmt.Println(x)
} const x string = "Hello World"
x = "Some other string".\main.go:7: cannot assign to xLast updated