Browse Source

updates

pull/1/head
Jason Williams 6 years ago
parent
commit
c10c0f7c6a
  1. 14
      .vscode/launch.json
  2. 2
      test.js

14
.vscode/launch.json vendored

@ -4,6 +4,18 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Launch",
"program": "${workspaceFolder}/target/debug/bin",
"args": [],
"cwd": "${workspaceFolder}",
"sourceLanguages": [
"rust"
],
"stopOnEntry": true
},
{ {
"name": "(Windows) Launch", "name": "(Windows) Launch",
"type": "cppvsdbg", "type": "cppvsdbg",
@ -11,7 +23,7 @@
"program": "${workspaceFolder}/target/debug/bin.exe", "program": "${workspaceFolder}/target/debug/bin.exe",
"stopAtEntry": false, "stopAtEntry": false,
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}",
"environment": [] "environment": [],
} }
] ]
} }

2
test.js

@ -1 +1 @@
let a = (2 * 2) let a = (2 * 2);
Loading…
Cancel
Save