generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPROJECT_LANG_1.js
32 lines (28 loc) · 2.27 KB
/
PROJECT_LANG_1.js
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
32
// Start of script
class projectLanguageFileOne() {
void main() {
// Writes the message to the console as well as popping up a dialog box, so that the message gets through one way or the other.
console.log ("Project language file 1");
alert("Project language file 1");
console.log ("For: seanpm2001/SeansLifeArchive_Images_ProtonCalendar");
alert("For: seanpm2001/SeansLifeArchive_Images_ProtonCalendar");
console.log ("About:");
alert("About:");
console.log ("I chose JavaScript as the first (main) project language for this project (seanpm2001/SeansLifeArchive_Images_ProtonCalendar) as the only source repository I can find for ProtonCalendar is written mostly in TypeScript, and mainly JavaScript, so I am assuming that is the language ProtonCalendar is written in. This project is solely about ProtonCalendar, so it fits. It is getting its own project language file, starting here.");
alert("I chose JavaScript as the first (main) project language for this project (seanpm2001/SeansLifeArchive_Images_ProtonCalendar) as the only source repository I can find for ProtonCalendar is written mostly in TypeScript, and mainly JavaScript, so I am assuming that is the language ProtonCalendar is written in. This project is solely about ProtonCalendar, so it fits. It is getting its own project language file, starting here.");
break;
} // Note for project language files: The languages associated with SNU programming tools are not included as project language files, as there are too many to list.
return main();
break;
}
// Output: (2x)
// Project language file 1
// For: seanpm2001/SeansLifeArchive_Images_ProtonCalendar
// About:
// I chose JavaScript as the first (main) project language for this project (seanpm2001/SeansLifeArchive_Images_ProtonCalendar) as the only source repository I can find for ProtonCalendar is written mostly in TypeScript, and mainly JavaScript, so I am assuming that is the language ProtonCalendar is written in. This project is solely about ProtonCalendar, so it fits. It is getting its own project language file, starting here.
/* File info
* File version: 1 (2023, Tuesday, January 10th at 4:25 pm PST)
* File type: JavaScript 1.8 source file (*.js *.cjs *.mjs)
* Line count (including blank lines and compiler line): 33
*/
// End of script