generated from seanpm2001/Template_Other_V7
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPROJECT_LANG_1.cpp
24 lines (24 loc) · 1.37 KB
/
PROJECT_LANG_1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Start of script
#include <iostream>
// Please note: I am not very experienced with the C++ programming language yet, so this is just a demo script. It may not function as intended.
// I chose C++ as the first project language file for this project (Seanpm2001/Learn-C-Plus-Plus) as this project is about learning the C++ programming language, and showing my knowledge for the language. Its project language file should represent what language is being showcased and studied here.
// Start of code
class projectLanguageFileOne {
int main() { // Main method
// Header
std::cout << "Project language file 1";
// Subheader
std::cout << "For: Seanpm2001/Learn-C-Plus-Plus";
// Neck
std::cout << "Reasoning:";
// Body
std::cout << "I chose C++ as the first project language file for this project (Seanpm2001/Learn-C-Plus-Plus) as this project is about learning the C++ programming language, and showing my knowledge for the language. Its project language file should represent what language is being showcased and studied here.";
// return main(); /* Too recursive, removed */
break; // Not sure what this does, but I am using it as a stopping point.
}} // End of code
/* File info
* File type: C++ Source file (*.cpp, *.cxx)
* File version: 1 (Friday, 2021 November 12th at 4:20 pm)
* Line count (including blank lines and compiler line): 25
*/
// End of script