This commit is contained in:
MaxJa4
2023-12-08 20:12:32 +01:00
parent 4b55f4524e
commit f3b87802c4
4 changed files with 1179 additions and 0 deletions

18
.vscode/launch.json vendored
View File

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