This commit is contained in:
MaxJa4
2023-12-15 17:17:26 +01:00
parent 043a777732
commit 923ea69669
4 changed files with 140 additions and 0 deletions

18
.vscode/launch.json vendored
View File

@@ -242,6 +242,24 @@
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'part15'",
"cargo": {
"args": [
"build",
"--bin=part15",
"--package=advent-of-code-2023"
],
"filter": {
"name": "part15",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}