-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
PROJECT_LANG_3.hxx
26 lines (26 loc) · 1.36 KB
/
PROJECT_LANG_3.hxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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 third project language file for this project (Seanpm2001/Tetris128) as C++ is one of the languages this project uses heavily (it has an engine written in the language) and I wanted to have a project language file to represent it.
// Start of code
class projectLanguageFileThreee {
int main() { // Main method
// Header
std::cout << "Project language file 3";
// Subheader
std::cout << "For: Seanpm2001/Tetris128";
// Neck
std::cout << "About:";
// Body
std::cout << "I chose C++ as the third project language file for this project (Seanpm2001/Tetris128) as C++ is one of the languages this project uses heavily (it has an engine written in the language) and I wanted to have a project language file to represent it.";
// return main(); /* Too recursive, removed */
break; // Not sure what this does, but I am using it as a stopping point.
return main();
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 *.C *.cc)
* File version: 1 (2021, Friday, December 17th at 6:43 pm)
* Line count (including blank lines and compiler line): 27
*/
// End of script