-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
PROJECT_LANG_1.cpp
26 lines (26 loc) · 1.15 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
25
26
// Start of script
#include <iostream>
// I chose C++ as the first project language file for this project (BluPhoneOS) as C++ is the original planned language for this project due to its usability and functionality at an operating system level.\n
// Start of source code
class projectLanguageFileOne {
int main() { // Main method
// Header
std::cout << "Project language file 1\n";
// Subheader
std::cout << "For: BluPhoneOS\n";
// Neck
std::cout << "About:\n";
// Body
std::cout << "I chose C++ as the first project language file for this project (BluPhoneOS) as C++ is the original planned language for this project due to its usability and functionality at an operating system level.\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.
return 0;
}} // End of source code
/* File info
* File type: C++ Source file (*.cpp, *.cxx *.C *.cc)
* File version: 1 (2022, Monday, January 17th at 5:31 pm)
* Line count (including blank lines and compiler line): 27
*/
// End of script