2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-09 07:10:36 +00:00
cheat.sheets/sheets/go/hello

12 lines
121 B
Plaintext
Raw Normal View History

2017-05-08 20:27:00 +00:00
// file: hello.go
package main
import "fmt"
func main() {
fmt.Println("Hello Go")
}
// to run: $ go run hello.go