-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPROJECT_LANG_4.cpp
More file actions
19 lines (19 loc) · 919 Bytes
/
PROJECT_LANG_4.cpp
File metadata and controls
19 lines (19 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>
// Start of script
// I decided to make C++ the fourth project language for this project (SWave Starter) as C++ is the language that is used for several access points and software libraries for this project, in place of Python (before I knew better)
class projectLanguageFileFour {
int main() {
std::cout << "Project language 4";
std::cout << "For: SWave Starter";
std::cout << "About:";
std::cout << "I decided to make C++ the fourth project language for this project (SWave Starter) as C++ is the language that is used for several access points and software libraries for this project, in place of Python (before I knew better).\n";
break;
}
return main();
break;
}
// File info
// File version: 1 (Saturday, 2021 September 11th at 9:20 pm)
// File type: C++ Source file (*.cpp, *.cxx)
// Line count (including blank lines and compiler line): 20
// End of script