-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
PROJECT_LANG_1.hxx
29 lines (29 loc) · 1.38 KB
/
PROJECT_LANG_1.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
27
28
29
// 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.
// Project language file 1
// For: SNU/2D/ProgrammingTools/IDE/C++
// About:
// I decided to make C++ the main project language file for this project (SNU / 2D / Programming Tools / IDE / C++) as this is a C++ IDE, and it needs its main language to be represented here.
// Start of source code
class projectLanguageFileOne {
int main() { // Main method
// Header
std::cout << "Project language file 1\n";
// Subheader
std::cout << "For: SNU/2D/ProgrammingTools/IDE/C++\n";
// Neck
std::cout << "About:\n";
// Body
std::cout << "I decided to make C++ the main project language file for this project (SNU / 2D / Programming Tools / IDE / C++) as this is a C++ IDE, and it needs its main language to be represented here.\n";
// 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 source code
/* File info
* File type: C++ Source file (*.cpp, *.cxx *.C *.cc *.hh *.hxx *.c++ *.h++)
* File version: 1 (2022, Saturday, September 24th at 9:33 pm PST)
* Line count (including blank lines and compiler line): 30
*/
// End of script