刚刚安装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?
有疑问加站长微信联系(非本文作者)

配置一下
参考你的项目地址一步步的配置一下。