Hello,
I have this piece :
~~~
package main
import "fmt"
func main() {
var x string = "Hello World"
fmt.Println(x)
}
~~~
but when I do go run main,go I see this error : main.go:1:1: expected 'package', found 'EOF'
which surprise me because line 1 starts with a package
Roelof