-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPROJECT_LANG_3.js
26 lines (26 loc) · 1.27 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
// Start of script
// I chose JavaScript as the third project language for this project (SNU) 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.
class projectLanguageFileThree() {
void main() {
console.log ("I chose JavaScript as the third project language for this project (SNU) 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.");
/* 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;
}
}
// 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 (Friday, 2021 September 10th at 8:19 pm)
* File type: JavaScript 1.8 source file (*.js)
* Line count (including blank lines and compiler line): 27
*/
// End of script