Initial commit

This commit is contained in:
Jonathan Carter
2019-05-01 13:00:29 -07:00
parent 2f8def812b
commit 0207c629b9
11 changed files with 133 additions and 2 deletions

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

@@ -0,0 +1,23 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable",
"cargo": {
"args": [
"build",
"--bin=hello_remote_world",
"--package=hello_remote_world",
"--manifest-path=Cargo.toml"
],
"filter": {
"kind": "bin"
}
},
"args": []
}
]
}