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
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Launch",
"program": "${workspaceFolder}/target/debug/bin",
"args": [],
"cwd": "${workspaceFolder}",
"sourceLanguages": [
"rust"
],
"stopOnEntry": true
},
{
"name": "(Windows) Launch",
"type": "cppvsdbg",
@ -11,7 +23,7 @@
"program": "${workspaceFolder}/target/debug/bin.exe",
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": []
"environment": [],
}
]
}

2
test.js

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