Home

(译)如何在VScode中使用Delve调试代码

原文 日期
stackoverflow 2016-08-21

如何在VScode中使用Delve调试代码, 一步一脚印:

( 注意: Windows 操作系统 要将 所有 $GOPATH 替换成 %GOPATH% )

package main

import "fmt"

func main() {
    fmt.Println("Hello World!")
    i := 101
    fmt.Println(i)
}

我的 launch.json 没有动过:

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Launch",
            "type": "go",
            "request": "launch",
            "mode": "debug",
            "remotePath": "",
            "port": 2345,
            "host": "127.0.0.1",
            "program": "${workspaceRoot}",
            "env": {},
            "args": [],
            "showLog": true
        }
    ]
}

结果:

result