I'm trying to run the hello world from golang in this link But when I run go install, I'm getting this error:
hello.go:1:1: illegal character U+0023
This is my hello.go
package main
import "fmt"
func main() {
fmt.Printf("hello, world")
}
I'm using Mac OS El Captain What is wrong?