1 08/04/86 Multics Pascal implementation.
 2 
 3 This segment describes the Multics Pascal implementation, as regards
 4 those features listed in the ISO standard as "implementation defined"
 5 or "implementation dependent".
 6 
 7 
 8 Implementation defined:
 9 
10 Alternate subscript brackets
11    "(." is a synonym of "[" and ".)" is a synonym of "]".
12 
13 Alternate comment delimiters
14    "{" is a synonym of "(*" and "}" is a synonym of "*)".
15    Note:  A comment that begins with "{" must end with "}", and a
16    comment that begins with "(*" must end with "*)".
17 
18 Alternate up_arrow
19    "@" is a synonym of "^".
20 
21 
22 The maximum positive integer is 34359738367.
23 
24 Reals can be printed with a precision of 19 digits.
25 
26 The character internal code is ASCII.
27 
28 The default width for integer printing is 12 characters.
29 
30 The default width for printing reals is 24 characters.
31           ("-X.XXXXXXXXXXXXXXXXE-XX")
32 
33 
34 Implementation dependant:
35 
36 Evaluation order of [a, b, c] is-- a, b, c.
37 
38 In logical expressions, ALL terms are evaluated, from left to right.
39 (Example: a OR b OR c).
40 
41 Value parameters passed to a procedure or a function are evaluated from
42 the leftmost to the rightmost.
43 
44 The PAGE procedure outputs one character (ASCII page code octal 014).
45 
46 The line separator in text files is the ASCII new line character
47 (octal 012).