Files
argument-parser/.vscode/launch.json
2025-06-24 18:35:50 +04:00

14 lines
318 B
JSON

{
"configurations": [
{
"name": "Launch",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/bin/test",
"args": ["-re", "hello, world"],
"cwd": "${workspaceFolder}",
"stopOnEntry": false
}
]
}