-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPROJECT_LANG_1.cpp
16 lines (16 loc) · 900 Bytes
/
PROJECT_LANG_1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>
// Start of script
// I decided to make C++ the first project language for this project (Underune_Maker) as C++ is the main primary language that ReactOS is written in, and this project can make use of C++ due to the projects simplicity. It may be supplemented for/with another language in the future.
class projectLanguageFile {
int main() {
std::cout << "I decided to make C++ the first project language for this project (Underune_Maker) as C++ is the main primary language that ReactOS is written in, and this project can make use of C++ due to the projects simplicity. It may be supplemented for/with another language in the future.\n";
break;
}
return main();
break;
}
// File info
// File version: 1 (Saturday, July 31st 2021 at 3:48 pm)
// File type: C++ Source file (*.cpp, *.cxx)
// Line count (including blank lines and compiler line): 17
// End of script