概念简介
我们的第一个Go语言程序将打印传说中的 “`hello world`”消息。
例程代码
package main
import "fmt"
func main() {
fmt.Println("hello world")
}
执行&输出
# 要运行这个程序,将代码放到 `hello-world.go` 中
# 然后执行 `go run` 。
$ go run hello-world.go
hello world
# 有时候我们想将程序编译成二进制文件,
# 可以通过 `go build` 来达到目的。
$ go build hello-world.go
$ ls
hello-world hello-world.go
# 然后我们可以直接运行这个二进制文件。
$ ./hello-world
hello world
# 通过上面简单的例子,现在我们可以运行并编译基本的 Go 程序。
课程导航
学习下一篇:Go语言教程:值的类型
相关资料
本例程github源代码:https://github.com/xg-wang/gobyexample/tree/master/examples/hello-world