Place the following code into a file name hello.go:
package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}
Playground
When Go is installed correctly this program can be compiled and run like this:
go run hello.go
Output:
Hello, 世界
Once you are...