-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPROJECT_LANG_1.pas
More file actions
25 lines (20 loc) · 1.02 KB
/
PROJECT_LANG_1.pas
File metadata and controls
25 lines (20 loc) · 1.02 KB
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
// Start of script
program LanguageFileOne(output);
begin
Write('Project language file 1')
Write('For: SNU/2D/ProgrammingTools/IDE/Pascal')
Write('About:')
Write('I decided to make Pascal the main project language file for this project (SNU / 2D / Programming Tools / IDE / Pascal) as this is a Pascal IDE, and it needs its main language to be represented here.')
{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: SNU/2D/ProgrammingTools/IDE/Pascal
// About:
// I decided to make Pascal the main project language file for this project (SNU / 2D / Programming Tools / IDE / Pascal) as this is a Pascal IDE, and it needs its main language to be represented here.
// File info
// File version: 1 (2022, Sunday, Octber 9th at 7:29 pm PST)
// File type: Pascal source file (*.pp *.pas *.inc)
// Line count (including blank lines and compiler line): 26
// End of script