Initial commit

This commit is contained in:
Zoey 2021-08-17 09:59:34 -07:00
commit 1c706726c1
14 changed files with 1202 additions and 0 deletions

15
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "run",
"problemMatcher": ["$rustc"],
"label": "rust: cargo run",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}