<>mesaport>compiler>Cmplr6Defs0.mesa
Created on 29-Apr-87 15:47:41
MW 29-Apr-87 15:47:41
constants and types to be imported by other module
Cmplr6Defs0: DEFINITIONS =
BEGIN
charA: CHAR = 'A;
limit: INTEGER = 87;
Range: TYPE = [-limit..limit];
Pair: TYPE = RECORD [first, second: Range];
PairPtr: TYPE = POINTER TO Pair;
END..