From 9c9949721a54326a50f2473ae89b52b18ba4124c Mon Sep 17 00:00:00 2001 From: qwertyw Date: Fri, 11 Oct 2024 11:53:16 +0000 Subject: [PATCH] dodanie projektu --- README.md | Bin 0 -> 1024 bytes laby.cpp | 8 ++++++++ launch.json | 7 +++++++ tasks.json | 28 ++++++++++++++++++++++++++++ 4 files changed, 43 insertions(+) create mode 100644 README.md create mode 100644 laby.cpp create mode 100644 launch.json create mode 100644 tasks.json diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..06d7405020018ddf3cacee90fd4af10487da3d20 GIT binary patch literal 1024 ScmZQz7zLvtFd70QH3R?z00031 literal 0 HcmV?d00001 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