```
package main
import "fmt"
func main(){
s := "Hello World."
fmt.Println(s)
}
```
具体代码如上:
程序可以正常运行,但是`import "fmt"`一直提示
```
'C:/Go/src/fmt' has no buildable Go source files less... (Ctrl+F1)
Reports invalid imports.
```
刚刚接触Golang和GoLand,请问大家我哪里配置错了?谢谢。
我之前用Gogland,今天看到有更新提示,就重新下了GoLand,想试试这个换了名字之后的IDE,结果就出现了这个问题。虽然不影响程序运行,但是一直是红色的提示,看着就闹心。请问能具体说明下,需要设置哪里吗?
#2