Files
the-way-to-go_ZH_CN/eBook/examples/chapter_4/hello_world.go
2013-04-15 19:50:45 +08:00

10 lines
92 B
Go

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