basic working script

This commit is contained in:
Tim Bendt
2025-04-22 15:28:14 -06:00
parent 1c7afafce7
commit 382a181720
4 changed files with 222 additions and 103 deletions

25
.vscode/launch.json vendored
View File

@@ -1,15 +1,12 @@
{
// 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 Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}