摘要:
语言结构 package main import "fmt" func main() { //这是一个简单的程序 fmt.Println("ccc") } 1.初始化go项目 go mod init 文件夹 执行go代码 go run xxx.go 生成可执行二进制文件 go build xxx.g 阅读全文
摘要:
cd ~ vim .bashrc # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi # Uncomment the following line if you don't like systemctl's 阅读全文