Programming Code Center(PCC)
[GO]

(PCC)::[how-to-write-Hello-World-program-in-go-language]::[go]

File Name : hello-world.go

package main
import "fmt"
func main() {
    fmt.Println("hello world")
}

Output :

hello-world.jpg