commit 9c9949721a54326a50f2473ae89b52b18ba4124c Author: qwertyw Date: Fri Oct 11 11:53:16 2024 +0000 dodanie projektu diff --git a/README.md b/README.md new file mode 100644 index 0000000..06d7405 Binary files /dev/null and b/README.md differ diff --git a/laby.cpp b/laby.cpp new file mode 100644 index 0000000..6516ead --- /dev/null +++ b/laby.cpp @@ -0,0 +1,8 @@ +#include + +int main() +{ + std::cout<<"Hello World"; + + return 0; +} \ No newline at end of file diff --git a/launch.json b/launch.json new file mode 100644 index 0000000..ce8a4f2 --- /dev/null +++ b/launch.json @@ -0,0 +1,7 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [] +} \ No newline at end of file diff --git a/tasks.json b/tasks.json new file mode 100644 index 0000000..6532339 --- /dev/null +++ b/tasks.json @@ -0,0 +1,28 @@ +{ + "tasks": [ + { + "type": "cppbuild", + "label": "C/C++: cl.exe build active file", + "command": "cl.exe", + "args": [ + "/Zi", + "/EHsc", + "/nologo", + "/Fe${fileDirname}\\${fileBasenameNoExtension}.exe", + "${file}" + ], + "options": { + "cwd": "${fileDirname}" + }, + "problemMatcher": [ + "$msCompile" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "detail": "Task generated by Debugger." + } + ], + "version": "2.0.0" +} \ No newline at end of file