Files
the-way-to-go_ZH_CN/eBook/examples/chapter_4/hello_world.go

8 lines
73 B
Go

package main
import "fmt"
func main() {
fmt.Println("hello, world")
}