gopl.io/ch1/helloworld/main.go
2015-06-16 13:04:43 -04:00

8 lines
74 B
Go

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