gopl.io/examples/ch1/hello/main.go
2015-02-02 21:32:30 -05:00

8 lines
74 B
Go

package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}