go mod 初识

代码编辑

进入d盘:D:

创建目录:mkdir gotest

进入目录:cd gotest

启用代码的依赖性跟踪:go mod init example/gotest

创建代码文件:type nul>test.go

编辑文件test.go:#需要使用专业的代码编辑工具

        package main

        import "fmt"

         func main() {

            fmt.Println("Hello, World!")

        }

运行代码: go run .     

添加外部模块

编辑文件test.go

    package main

    import "fmt"

    import "rsc.io/quote"

    func main() {

        fmt.Println(quote.Go())

    }

更新mod依赖

        go mod  tidy

运行代码

    go run .

你可能感兴趣的:(go mod 初识)