generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPROJECT_LANG_1.pas
26 lines (21 loc) · 1.47 KB
/
PROJECT_LANG_1.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Start of script
program LanguageFileFileOne(output);
begin
Write('Project language file 1')
Write('For: WacOS/BaSYS/Calculator')
Write('About:')
Write('I have decided to have the first project language file for this project (WacOS/BaSYS/Calculator) to be Pascal, as Pascal is a language used commonly in Classic Mac OS applications. Since this calculator is designed to be ran similarly, I needed to use Pascal a little more, as I have been heavily using C, and I normally use Pascal as the application level language for BaSYS. Pascal is getting its own project language file, starting here.')
break
{No ";" is required after the last statement of a block -
adding one adds a "null statement" to the program, which is ignored by the compiler.}
end.
// Output:
// Project language file 1
// For: WacOS/BaSYS/Calculator
// About:
// I have decided to have the first project language file for this project (WacOS/BaSYS/Calculator) to be Pascal, as Pascal is a language used commonly in Classic Mac OS applications. Since this calculator is designed to be ran similarly, I needed to use Pascal a little more, as I have been heavily using C, and I normally use Pascal as the application level language for BaSYS. Pascal is getting its own project language file, starting here.
// File info
// File version: 1 (2022, Wednesday, June 8th at 7:25 pm PST)
// File type: Pascal source file (*.pas)
// Line count (including blank lines and compiler line): 27
// End of script