diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-10-29 16:12:46 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-10-29 16:12:46 +0300 |
| commit | 96f7b20ac82864a548fa9888eaed109b29ff8441 (patch) | |
| tree | 7d6397e5c60e6ec6b88fe9335f1c508a4037e885 /C++/How to C++ (02.12.2017)/Meh | |
| parent | 1d3fdf9c4d330379701539bd7b71bd1d31942b66 (diff) | |
| download | Self-learning-96f7b20ac82864a548fa9888eaed109b29ff8441.tar Self-learning-96f7b20ac82864a548fa9888eaed109b29ff8441.tar.gz Self-learning-96f7b20ac82864a548fa9888eaed109b29ff8441.zip | |
Added some self learning stuff from 2017
Diffstat (limited to 'C++/How to C++ (02.12.2017)/Meh')
| -rwxr-xr-x | C++/How to C++ (02.12.2017)/Meh/Meh.cbp | 43 | ||||
| -rwxr-xr-x | C++/How to C++ (02.12.2017)/Meh/Meh.depend | 4 | ||||
| -rwxr-xr-x | C++/How to C++ (02.12.2017)/Meh/Meh.layout | 10 | ||||
| -rwxr-xr-x | C++/How to C++ (02.12.2017)/Meh/main.cpp | 8 |
4 files changed, 65 insertions, 0 deletions
diff --git a/C++/How to C++ (02.12.2017)/Meh/Meh.cbp b/C++/How to C++ (02.12.2017)/Meh/Meh.cbp new file mode 100755 index 0000000..d84c450 --- /dev/null +++ b/C++/How to C++ (02.12.2017)/Meh/Meh.cbp @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocks_project_file> + <FileVersion major="1" minor="6" /> + <Project> + <Option title="Meh" /> + <Option pch_mode="2" /> + <Option compiler="gcc" /> + <Build> + <Target title="Debug"> + <Option output="bin/Debug/Meh" prefix_auto="1" extension_auto="1" /> + <Option object_output="obj/Debug/" /> + <Option type="1" /> + <Option compiler="gcc" /> + <Compiler> + <Add option="-g" /> + </Compiler> + </Target> + <Target title="Release"> + <Option output="bin/Release/Meh" prefix_auto="1" extension_auto="1" /> + <Option object_output="obj/Release/" /> + <Option type="1" /> + <Option compiler="gcc" /> + <Compiler> + <Add option="-O2" /> + </Compiler> + <Linker> + <Add option="-s" /> + </Linker> + </Target> + </Build> + <Compiler> + <Add option="-Wall" /> + <Add option="-fexceptions" /> + </Compiler> + <Unit filename="main.cpp" /> + <Extensions> + <code_completion /> + <envvars /> + <debugger /> + <lib_finder disable_auto="1" /> + </Extensions> + </Project> +</CodeBlocks_project_file> diff --git a/C++/How to C++ (02.12.2017)/Meh/Meh.depend b/C++/How to C++ (02.12.2017)/Meh/Meh.depend new file mode 100755 index 0000000..1b5c285 --- /dev/null +++ b/C++/How to C++ (02.12.2017)/Meh/Meh.depend @@ -0,0 +1,4 @@ +# depslib dependency file v1.0
+1512233808 source:e:\all projects\how to c++\meh\main.cpp
+ <iostream>
+
diff --git a/C++/How to C++ (02.12.2017)/Meh/Meh.layout b/C++/How to C++ (02.12.2017)/Meh/Meh.layout new file mode 100755 index 0000000..158b7c7 --- /dev/null +++ b/C++/How to C++ (02.12.2017)/Meh/Meh.layout @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocks_layout_file> + <FileVersion major="1" minor="0" /> + <ActiveTarget name="Debug" /> + <File name="main.cpp" open="1" top="1" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0"> + <Cursor> + <Cursor1 position="55" topLine="0" /> + </Cursor> + </File> +</CodeBlocks_layout_file> diff --git a/C++/How to C++ (02.12.2017)/Meh/main.cpp b/C++/How to C++ (02.12.2017)/Meh/main.cpp new file mode 100755 index 0000000..f13ac21 --- /dev/null +++ b/C++/How to C++ (02.12.2017)/Meh/main.cpp @@ -0,0 +1,8 @@ +#include <iostream>
+using namespace std;
+
+int main()
+{
+ cout << "Hello everyone! \n How are you doing today?";
+ return 0;
+}
|
