This commit is contained in:
joBr99
2023-11-24 21:00:35 +01:00
parent c6e49bbf80
commit d82ffc3617
3 changed files with 17 additions and 0 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "main.py",
"cwd": "${fileDirname}",
"console": "integratedTerminal",
"justMyCode": true
}
]
}