刚刚安装Goland2018.1.4,照着帮助敲出这么个小程序:
package main
import "fmt"
func HelloGo() string {
return "welcome to go language"
}
func main() {
output := HelloGo()
fmt.Println(output)
}
**Run就正常,但是Debug就报错!**
could not launch process: The system cannot find the file specified.
Debugger finished with exit code 1
请问如何设置使得能够Debug?
参考你的项目地址一步步的配置一下。
![foot.png](https://static.studygolang.com/180702/5940586fc9935f5178497256913cb3bc.png)
#2
更多评论
配置一下
![WX20180702-165545@2x.png](https://static.studygolang.com/180702/367f0cf9fd3c46d51f64d5c7ad972837.png)
#1