From 18ff34bb969e5aec1a44bbebb2c39fe508bbf026 Mon Sep 17 00:00:00 2001 From: "github-classroom[bot]" <66690702+github-classroom[bot]@users.noreply.github.com> Date: Wed, 9 Nov 2022 22:14:24 +0000 Subject: Initial commit --- BlankConsoleLab/BlankConsoleLab.cpp | 16 +++ BlankConsoleLab/BlankConsoleLab.vcxproj | 147 ++++++++++++++++++++++++ BlankConsoleLab/BlankConsoleLab.vcxproj.filters | 22 ++++ 3 files changed, 185 insertions(+) create mode 100644 BlankConsoleLab/BlankConsoleLab.cpp create mode 100644 BlankConsoleLab/BlankConsoleLab.vcxproj create mode 100644 BlankConsoleLab/BlankConsoleLab.vcxproj.filters (limited to 'BlankConsoleLab') diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp new file mode 100644 index 0000000..ed5f807 --- /dev/null +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -0,0 +1,16 @@ +// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there. +// + +#include + +using namespace std; + +using std::cout; +using std::cin; +using std::endl; + +int main() +{ + cout << "Hello World!\n"; +} + diff --git a/BlankConsoleLab/BlankConsoleLab.vcxproj b/BlankConsoleLab/BlankConsoleLab.vcxproj new file mode 100644 index 0000000..db2e734 --- /dev/null +++ b/BlankConsoleLab/BlankConsoleLab.vcxproj @@ -0,0 +1,147 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 16.0 + Win32Proj + {3cecade6-3e15-4852-bd24-65bfe5d3a3aa} + BlankConsoleLab + 10.0 + + + + Application + true + v142 + Unicode + + + Application + false + v142 + true + Unicode + + + Application + true + v142 + Unicode + + + Application + false + v142 + true + Unicode + + + + + + + + + + + + + + + + + + + + + true + + + false + + + true + + + false + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/BlankConsoleLab/BlankConsoleLab.vcxproj.filters b/BlankConsoleLab/BlankConsoleLab.vcxproj.filters new file mode 100644 index 0000000..aca1dd9 --- /dev/null +++ b/BlankConsoleLab/BlankConsoleLab.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Source Files + + + \ No newline at end of file -- cgit v1.2.3