Hello Go
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hello Go相关的知识,希望对你有一定的参考价值。
开始学golang
上手文档http://docs.studygolang.com/doc/install
系统:windows10 64bit
从文档上抄一段代码,保存为hello.go
// You can edit this code! // Click here and start typing. package main import "fmt" func main() { fmt.Println("Hello, World") }
运行命令:
go run hello.go
运行结果:
Hello, World
以上。
以上是关于Hello Go的主要内容,如果未能解决你的问题,请参考以下文章
解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段