mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-09 07:10:36 +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
|