Skip to content

Commit 683ffd5

Browse files
authored
PROJECT_LANG_1.js [V1]
Version 1 of the first project language file for this directory set.
1 parent ec3fdc1 commit 683ffd5

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

PROJECT_LANG_1.js

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// Start of script
2+
3+
// Project language file 1
4+
// For: SNU/2D/ProgrammingTools/IDE/JavaScript
5+
// About:
6+
// 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.
7+
8+
void main() {
9+
// 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.
10+
console.log ("Project language file 1");
11+
alert("Project language file 1");
12+
console.log ("For: SNU/2D/ProgrammingTools/IDE/JavaScript");
13+
alert("For: SNU/2D/ProgrammingTools/IDE/JavaScript");
14+
console.log ("About:");
15+
alert("About:");
16+
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.");
17+
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.");
18+
break;
19+
} // 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.
20+
21+
return main();
22+
break;
23+
24+
}
25+
26+
/* File info
27+
*| File version: 1 (2022, Tuesday, October 4th at 5:30 pm PST)
28+
*| File type: JavaScript 1.8 source file (*.js *.cjs *.mjs)
29+
*| Line count (including blank lines and compiler line): 33
30+
*/
31+
32+
// End of script

0 commit comments

Comments
 (0)