This commit is contained in:
MaxJa4
2023-12-08 22:02:12 +01:00
parent f3b87802c4
commit 0c814889b5
7 changed files with 864 additions and 0 deletions

18
.vscode/launch.json vendored
View File

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