Skip to content

Commit da3e08a

Browse files
authored
PROJECT_LANG_1_V1.js
An archive of the first version of the first project language file for this project.
1 parent 97a57fc commit da3e08a

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// Start of script
2+
3+
// Project language file 1
4+
// For: seanpm2001/Learn-JavaScript
5+
// About:
6+
// I chose JavaScript as the first project language file for this project (Seanpm2001/Learn-JavaScript) as this project is about learning the JavaScript programming language, and showing my knowledge for the language. Its project language file should represent what language is being showcased and studied 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: seanpm2001/Learn-JavaScript");
13+
alert("For: seanpm2001/Learn-JavaScript");
14+
console.log ("About:");
15+
alert("About:");
16+
console.log ("I chose JavaScript as the first project language file for this project (Seanpm2001/Learn-JavaScript) as this project is about learning the JavaScript programming language, and showing my knowledge for the language. Its project language file should represent what language is being showcased and studied here.");
17+
alert("I chose JavaScript as the first project language file for this project (Seanpm2001/Learn-JavaScript) as this project is about learning the JavaScript programming language, and showing my knowledge for the language. Its project language file should represent what language is being showcased and studied 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, Wednesday, April 20th at 2:35 pm PST)
28+
* File type: JavaScript 1.8 source file (*.js)
29+
* Line count (including blank lines and compiler line): 32
30+
*/
31+
// End of script

0 commit comments

Comments
 (0)