@xxliixin1993
2016-07-20T10:21:55.000000Z
字数 329
阅读 1137
golang
package main
import "fmt"
func main() {
fmt.print('hello,world')
}
运行
root@PC:/lixin/go/src# go run hello.go
hello, world
编译,会生成
root@PC:/lixin/go/src# go build hello.go
root@PC:/lixin/go/src# ./hello
hello, world
package main 必须首先出现,紧跟着是 import。在 Go 中,package 总是首先出现,
然后是 import,然后是其他所有内容。当 Go 程序在执行的时候,首先调用的函数
是 main.main() ,这是从 C 中继承而来。这里定义了这个函数;