mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-11 22:06:51 +08:00
11 lines
104 B
Plaintext
Executable File
11 lines
104 B
Plaintext
Executable File
// goprogram.go
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("Hello World!")
|
|
}
|