aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorMatt Strapp <strap012@umn.edu>2021-03-19 10:03:15 -0500
committerMatt Strapp <strap012@umn.edu>2021-03-19 10:03:15 -0500
commitaedaa71322f512a70309168d7df7ef157668e1f2 (patch)
tree137f15d8012e48253730b41535b08b618e5bfd92 /.vscode
parentInitial commit (diff)
downloadcsci4511w-aedaa71322f512a70309168d7df7ef157668e1f2.tar
csci4511w-aedaa71322f512a70309168d7df7ef157668e1f2.tar.gz
csci4511w-aedaa71322f512a70309168d7df7ef157668e1f2.tar.bz2
csci4511w-aedaa71322f512a70309168d7df7ef157668e1f2.tar.lz
csci4511w-aedaa71322f512a70309168d7df7ef157668e1f2.tar.xz
csci4511w-aedaa71322f512a70309168d7df7ef157668e1f2.tar.zst
csci4511w-aedaa71322f512a70309168d7df7ef157668e1f2.zip
Add Python File and VSCode Debug file
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..17e15f2
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,15 @@
+{
+ // 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": "${file}",
+ "console": "integratedTerminal"
+ }
+ ]
+} \ No newline at end of file