```go // 使用 := 创建并赋值新变量 x := 5 fmt.Println("x =", x) // 使用 = 给已存在的变量赋新值 x = 10 fmt.Println("新的 x =", x) ```