-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPROJECT_LANG_1.mjs
32 lines (26 loc) · 1.56 KB
/
PROJECT_LANG_1.mjs
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
// Project language file 1
// For: SNU/2D/ProgrammingTools/IDE/JavaScript
// About:
// I decided to make JavaScript the main project language file for this project (SNU / 2D / Programming Tools / IDE / JavaScript) as this is a JavaScript IDE, and it needs its main language to be represented here.
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: SNU/2D/ProgrammingTools/IDE/JavaScript");
alert("For: SNU/2D/ProgrammingTools/IDE/JavaScript");
console.log ("About:");
alert("About:");
console.log ("I decided to make JavaScript the main project language file for this project (SNU / 2D / Programming Tools / IDE / JavaScript) as this is a JavaScript IDE, and it needs its main language to be represented here.");
alert("I decided to make JavaScript the main project language file for this project (SNU / 2D / Programming Tools / IDE / JavaScript) as this is a JavaScript IDE, and it needs its main language to be represented 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;
}
/* File info
*| File version: 1 (2022, Tuesday, October 4th at 5:30 pm PST)
*| File type: JavaScript 1.8 source file (*.js *.cjs *.mjs)
*| Line count (including blank lines and compiler line): 33
*/
// End of script