shad-go/lectures/00-intro/helloworld/helloworld.go

8 lines
74 B
Go
Raw Normal View History

2020-02-09 18:14:30 +00:00
package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}