generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PROJECT_LANG_7.ts
18 lines (18 loc) · 1.07 KB
/
PROJECT_LANG_7.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Start of script
/* I chose TypeScript as the 7th project language for this project (WacOS/BaSYS) as TypeScript compiles to JavaScript, and I wanted to use it on this project. The original JavaScript was separately converted to TypeScript. It is getting its own project language file, starting here. */
// WARNING: I am not very experienced with TypeScript. This program may not execute properly. /
namespace ts {
public void projectLanguageFileSeven() {
let message: string = 'Project language file 7\nFor: WacOS/BaSYS\nAbout:\nI chose TypeScript as the 7th project language for this project (WacOS/BaSYS) as TypeScript compiles to JavaScript, and I wanted to use it on this project. The original JavaScript was separately converted to TypeScript. It is getting its own project language file, starting here.\n';
console.log(message);
break;
}
return projectLanguageFileSeven();
break;
}
/* File info
* File type: TypeScript source file (*.ts)
* File version: 1 (2022, Sunday, May 8th at 9:13 pm PST)
* Line count (including blank lines and compiler line): 19
*/
// End of script