Attempted to execute " hello world" program in Go, encountered this error message: “The term go is not recognized as the name of cmdlet”
main.go
package main
import “fmt”
func main( ) {
fmt.Print (“Hello World”)
}
Attempted to execute " hello world" program in Go, encountered this error message: “The term go is not recognized as the name of cmdlet”
main.go
package main
import “fmt”
func main( ) {
fmt.Print (“Hello World”)
}
This sounds like an error Powershell would give you when go isn’t installed properly.
Is that main.go in the go file? That would be an error. Can you remove it?