📌  相关文章
📜  go constant - Go 编程语言代码示例

📅  最后修改于: 2022-03-11 14:45:01.717000             🧑  作者: Mango

代码示例1
Constants are declared like variables, but with the const keyword.
Constants can be character, string, boolean, or numeric values.
Constants cannot be declared using the := syntax.