generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PROJECT_LANG_6.js
21 lines (21 loc) · 1.75 KB
/
PROJECT_LANG_6.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Start of script// I chose JavaScript as the sixth project language for this project (WacOS/BaSYS) as JavaScript is one of the key languages to use for web page scripting in the donated web demo for this project. A TypeScript version was made by me nearly 16 full years later. It is getting its own project language file, starting here.
class projectLanguageFileSix() {
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 6");
alert("Project language file 6");
console.log ("For: WacOS/BaSYS");
alert("For: WacOS/BaSYS");
console.log ("About:");
alert("About:");
console.log ("I chose JavaScript as the sixth project language for this project (WacOS/BaSYS) as JavaScript is one of the key languages to use for web page scripting in the donated web demo for this project. A TypeScript version was made by me nearly 16 full years later. It is getting its own project language file, starting here.");
alert("I chose JavaScript as the sixth project language for this project (WacOS/BaSYS) as JavaScript is one of the key languages to use for web page scripting in the donated web demo for this project. A TypeScript version was made by me nearly 16 full years later. 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;
} /* File info
* File version: 1 (2022, Sunday, May 8th at 9:07 pm PST)
* File type: JavaScript 1.8 source file (*.js)
* Line count (including blank lines and compiler line): 22
*/ // End of script