go的基本操作

  1. 创建目录
mkdir hello
cd hello
  1. 创建项目
 go mod init example/hello
go: creating new go.mod: module example/hello
  1. 编写code
package main

import "fmt"

func main() {
    fmt.Println("Hello, World!")
}
  1. 运行项目
go run .

  1. 下载外部包
go mod tidy

你可能感兴趣的:(go的基本操作)