did it in c++

This commit is contained in:
Seth Samuel 2024-12-02 10:52:22 +13:00
parent 38ec2988c9
commit 885e836f74
7 changed files with 1086 additions and 2 deletions

22
.vscode/tasks.json vendored
View file

@ -3,7 +3,7 @@
{
"type": "cppbuild",
"label": "C/C++: gcc build active file",
"command": "/usr/bin/gcc",
"command": "/usr/bin/g++",
"args": [
"-fdiagnostics-color=always",
"-g",
@ -22,6 +22,26 @@
"isDefault": true
},
"detail": "Task generated by Debugger."
},
{
"type": "cppbuild",
"label": "C/C++: g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": "build",
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"