Skip to content

Instantly share code, notes, and snippets.

@likern
Created June 21, 2023 15:33
Show Gist options
  • Save likern/35537ba2a27354b7ad17d78d9a4607bb to your computer and use it in GitHub Desktop.
Save likern/35537ba2a27354b7ad17d78d9a4607bb to your computer and use it in GitHub Desktop.
.vscode/launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"program": "${workspaceFolder}/zig-out/bin/test",
"args": [
"/home/me/.local/opt/zig-0.10.0-dev/zig"
],
"cwd": "${workspaceFolder}"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment