-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPROJECT_LANG_2.js
20 lines (20 loc) · 974 Bytes
/
PROJECT_LANG_2.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Start of script
// I decided to make the 2nd project language file for this project (SeansAudioDB) to be JavaScript, as JavaScript is one of the languages used early on in development (jQuery is an implementation of JavaScript) JavaScript might not be used further in this project.
class projectLanguageFileTwo() {
void main() {
console.log ("Project language file 2");
console.log ("SeansAudioDB");
console.log ("About:");
console.log ("I decided to make the 2nd project language file for this project (SeansAudioDB) to be JavaScript, as JavaScript is one of the languages used early on in development (jQuery is an implementation of JavaScript) JavaScript might not be used further in this project.");
break;
return 0;
}
}
return main();
break;
/* File info
* File version: 1 (Friday, 2021 October 29th at 7:08 pm)
* File type: JavaScript 1.8 source file (*.js)
* Line count (including blank lines and compiler line): 21
*/
// End of script