I am new to golang, but working on go 1.11.x.
My team use go module
. The first time I clone the repository, I need to run GO111MODULE=on go mod download
to download dependencies modules.
Then I need to run GO111MODULE=on go run main.go
to run my app.
There is no one use vscode debugger, they prefer console log instead.
Is there any way to debug go 1.11.x using vscode?
Thanks.