2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-05 12:00:16 +00:00
cheat.sheets/sheets/_go/hello
2017-05-28 21:33:30 +00:00

18 lines
369 B
Plaintext

// file: hello.go
// to install go:
// download go from https://golang.org/dl/
// extract it somewhere (say to $HOME/go1.X)
// export GOROOT=$HOME/go1.X
// export PATH=$PATH:$GOROOT/bin
// to compile: go build hello.go
// to run: go run hello.go
// or ./hello
package main
import "fmt"
func main() {
fmt.Println("Hello Go")
}