This commit is contained in:
MaxJa4
2023-12-09 14:22:02 +01:00
parent 0c814889b5
commit 043a777732
6 changed files with 348 additions and 0 deletions

18
.vscode/launch.json vendored
View File

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