ciao!

ho installato go e vscode su windows.
ho creato il file main.go:
codice:
package main


import "fmt"


func main() {
	fmt.Println("ciao")
}
e poi ho dato il comando per il mod:
codice:
go mod init test-go
fin qui tutto, tranne per il fatto che non riesco ad eseguire il run:
codice:
PS D:\TEST\test-go> go run  
go: no go files listed

PS D:\TEST\test-go> go run .
# test-go
.\main.go:3:8: could not import fmt (EOF)
qualche idea??