未验证 提交 ea0c2514 编写于 作者: 王下邀月熊-WxChevalier's avatar 王下邀月熊-WxChevalier 提交者: GitHub

Update Go-CheatSheet.md

上级 341c90eb
......@@ -7,6 +7,13 @@ var c, python, java bool
// 声明不同类型的变量,并且赋值
var i bool, j int = true, 2
// 复杂变量声明
var (
ToBe bool = false
MaxInt uint64 = 1<<64 - 1
z complex128 = cmplx.Sqrt(-5 + 12i)
)
// 短声明变量
c, python, java := true, false, "no!"
```
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册