Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 ubuntu 14.04 上安装 goClipse。我已经从存储库安装了 java8,并下载了 eclipse mars 4.5。
我在一个名为 hello.go 的文件中尝试了这个示例代码:
package main import "fmt" func main() { fmt.Printf("hello, world\n") }
但它只能从终端使用以下命令工作:
go run hello.go
谢谢你
“main.go”需要位于项目结构的 src 文件夹内的子目录中。直接在 src 文件夹下的 Go 文件将被忽略。我建议在 src 下创建一个“MainProgram”目录并从那里运行它。