Skip to content

Instantly share code, notes, and snippets.

@hamza72x
Created May 21, 2021 02:59
Show Gist options
  • Save hamza72x/821c895c2ad7b908adff6d1b450a1911 to your computer and use it in GitHub Desktop.
Save hamza72x/821c895c2ad7b908adff6d1b450a1911 to your computer and use it in GitHub Desktop.
.vscode/launch.json for golang
{
"version": "0.2.0",
"configurations": [
{
"name": "Build & Run",
"type": "go",
"request": "launch",
"mode": "exec",
"preLaunchTask": "go-build", // check tasks.json file
"program": "exec"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment