主页
Go
Go 常量
demo_variable_constants1
运行 ❯
×
更改方向
保存代码
更改主题
package main import ("fmt") const A int = 1 func main() { fmt.Println(A) }
1