-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
PROJECT_LANG_3.js
30 lines (30 loc) · 1.69 KB
/
PROJECT_LANG_3.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
// Start of script
// I chose JavaScript as the third project language for this project (SNU / 3D / Universe) as JavaScript is one of the 3 common languages that most webpages are written in, and JavaScript is one of the portable functional programming languages used for this project. It also has a lot of use in SNU development. For this project, it will also be supplemented with some other high level languages. It was already one of the 2 existing languages.
class projectLanguageFileTwo() {
void main() {
console.log ("Project language file 3");
console.log ("For: SNU / 3D / Universe");
console.log ("About:");
console.log ("I chose JavaScript as the third project language for this project (SNU / 3D / Universe) as JavaScript is one of the 3 common languages that most webpages are written in, and JavaScript is one of the portable functional programming languages used for this project. It also has a lot of use in SNU development. For this project, it will also be supplemented with some other high level languages. It was already one of the 2 existing languages.");
/* Garbage syntax, so I can test out 2 new keywords I recently learned. Uncomment to highlight
x = bool("true");
y = bool("false");
if (x == "false"); {
try y
} else: {
catch x;
}
*/
break;
return 0;
}
}
// 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 (Tuesday, 2021 October 19th at 6:54 pm)
* File type: JavaScript 1.8 source file (*.js)
* Line count (including blank lines and compiler line): 31
*/
// End of script