generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPROJECT_LANG_1.hxx
31 lines (31 loc) · 1.53 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
30
31
// 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: SeansLifeArchive/Images/InkScape
// About:
// I decided to make C++ the first and main project language file for this project (seanpm2001/SeansLifeArchive_Images_Inkscape) as C++ is the main language Inkscape is written in, and this project is purely about the Inkscape software, so it fits. It is getting its own project language file, starting here
// Start of code
class projectLanguageFileOne {
int main() { // Main method
// Header
std::cout << "Project language file 1\n";
// Subheader
std::cout << "For: SeansLifeArchive/Images/InkScape\n";
// Neck
std::cout << "About:\n";
// Body
std::cout << "I decided to make C++ the first and main project language file for this project (seanpm2001/SeansLifeArchive_Images_Inkscape) as C++ is the main language Inkscape is written in, and this project is purely about the Inkscape software, so it fits. It is getting its own project language file, starting here\n";
// return main(); /* Too recursive, removed */
break; // Not sure what this does, but I am using it as a stopping point.
}}
return main();
return 0;
break;
// End of code
/* File info
* File type: C++ Source file (*.cpp, *.cxx *.C *.hh *.hxx *.c++ *.h++)
* File version: 1 (2022, Tuesday, August 30th at 7:45 pm PST)
* Line count (including blank lines and compiler line): 32
*/
// End of script