0

我正在尝试在 sublime text 3 中运行 go 代码。

package main

import (
    "fmt"
)

func main() {
    fmt.Println("Hello, playground")
}

但是,当我进入时,Tools -> Build我看到程序进入无限循环。

GoSublime r17.03.05-1 9o: type `help` for help and command documentation

[ `go run main.go` ⌛ ]
[ ~/Documents/SublimeWorkspace/ ] # 

请让我知道我可能在这里遗漏了什么。

4

1 回答 1

0

打开 sublime Goto Tools->Build System-> New build System。将以下行粘贴到文件中并通过 some_name.sublime-build 保存

{
"shell_cmd": "go run $file",
"shell":true
}

转到工具->构建系统-><select-your-build or automatic>

转到工具->构建

干杯:)

于 2017-04-15T03:48:11.627 回答