编写go 代码,Hello,Golang

package main
import "fmt"

func main() {
fmt.Println("Hello,Golang")
}


运行

go run main.go