mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 01:08:53 +08:00
8 lines
84 B
Go
8 lines
84 B
Go
// hello_world1.go
|
|
package main
|
|
|
|
func main() {
|
|
println("Hello", "world")
|
|
}
|
|
|