摘要: gitlab安装完毕后,默认开机启动,开启关闭 sudo gitlab-ctl start/stop 阅读全文
posted @ 2020-08-26 18:06 牛奔 阅读(3513) 评论(0) 推荐(0) 编辑
摘要: Go语言在代码规范中定义未使用的变量会报“declared and not used”错误 package main import "fmt" func main() { var a, b, c int64 a = 10 b = 15 c = a + b fmt.Printf("a = %d,b = 阅读全文
posted @ 2020-08-26 13:57 牛奔 阅读(1774) 评论(0) 推荐(0) 编辑