在macbook上开始go.
安装brew
$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”
$ brew update
安装go
$ brew install go
$ brew install hg
编写helloworld.go
这样写:
package main
func main() {
println("Hello World!")
}
或者这样写:
package main
import "fmt"
func main() {
fmt.Printf("Hello world!\n")
}
注意源码里所有的双引号都不能替换成单引号。语义是不同的。想想C语言吧。
运行:
$ go run helloworld.go
或者先编译再运行:
$ go build helloworld.go
$ ./helloworld
继续探索Go语言,可以从《Go简易教程》开始。Enjoy!
QY 20180115