initial commit.

This commit is contained in:
siriusfox 2022-07-02 17:30:47 -07:00
commit c74c452362
17 changed files with 4983 additions and 0 deletions

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

@ -0,0 +1,19 @@
{
"tasks": [
{
"type": "shell",
"label": "C/C++: g++ build workspace project",
"command": "${workspaceFolder}/build.sh",
"options": {
"cwd": "${workspaceFolder}"
},
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$gcc",
"detail": "compiler: /usr/bin/g++"
}
],
"version": "2.0.0"
}