1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 dcl (UNKNOWN_lang_type init (1),
18 OTHER_lang_type init (2),
19 PL1_lang_type init (3),
20 FORTRAN_lang_type init (4),
21 COBOL_lang_type init (5),
22 ALM_lang_type init (6),
23 ALGOL68_lang_type init (7),
24 PASCAL_lang_type init (8),
25 C_lang_type init (9)) fixed bin internal static options (constant);
26
27 dcl official_language_names (9) char (32) internal static options (constant) init
28 ("Unknown", "other", "PL/I", "FORTRAN", "COBOL", "ALM", "Algol 68", "Pascal", "C");
29
30 dcl palatable_language_names (9) char (32) internal static options (constant) init
31 ("Unknown", "Other", "pl1", "fortran", "cobol", "alm", "algol68", "pascal", "c");
32
33