主页
Go
Go 变量
demo_variable_declaration3
运行 ❯
×
更改方向
保存代码
更改主题
package main import ("fmt") func main() { var student1 string student1 = "John" fmt.Println(student1) }
John