04 2020 档案

摘要:package main import "fmt" func main() { // 变量定于的语法格式 // 常规写法 var age int age = 30 fmt.Println(age) // 简化 var name string = "paul" fmt.Println(name) // 阅读全文
posted @ 2020-04-23 19:18 Ray_chen 阅读(953) 评论(0) 推荐(0)
摘要:# 全局配置 >git config --global user.name ""git config --global user.email "" ## 查看用户配置> git config user.namegit config user.email ## 初始化一个仓库> git initgit 阅读全文
posted @ 2020-04-21 01:16 Ray_chen 阅读(159) 评论(0) 推荐(0)
摘要:## 引用 无题 > 身无彩凤双飞翼 心有灵犀一点通 - - - ## 分割线 - - - *** ___ ## 强调 *python* _python_ **python** __python__ 无序列表 *** + python + go * python * go - python - go 阅读全文
posted @ 2020-04-20 21:36 Ray_chen 阅读(201) 评论(0) 推荐(0)