mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-17 09:25:32 +00:00
12 lines
121 B
Plaintext
12 lines
121 B
Plaintext
// file: hello.go
|
|
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println("Hello Go")
|
|
}
|
|
|
|
// to run: $ go run hello.go
|