-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPROJECT_LANG_2.hack
More file actions
15 lines (15 loc) · 829 Bytes
/
PROJECT_LANG_2.hack
File metadata and controls
15 lines (15 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<<__EntryPoint>>
// Start of script
function projectLanguageTwo(): void {
echo 'Project language file 2';
echo 'For: seanpm2001/PhD-In-PHP';
echo 'About: ';
echo 'I chose Hack as the second project language file for this project (seanpm2001/PhD-in-PHP) as despite not being purely PHP, it is heavily influenced by PHP. On 2022, November 23rd, I expanded this projects scope by including languages that are influenced by PHP as extra credit courses and assignments. Hack was the first language to come up after PHP. It is getting its own project language file, starting here.';
}
return projectLanguageTwo();
/* File info
* File type: Hack source file (*.hh *.hck *.php *.hack)
* File version: 1 (2022, Thursday, November 24th at 5:00 pm PST)
* Line count (including blank lines and compiler line): 16
*/
// End of script