$ touch hello_world.go
package main import "fmt" func main() { fmt.Println("Hello, 世界") }
$ go run hello_world.go
Last updated 3 years ago