package main
import "fmt"
func main() {
// 定义一个字符串变量
var message string = "Hello, World!"
// 打印字符串变量
fmt.Println(message)
}
查看详情