INTERFACE LR6x6Rep; (* Definition and basic properties of the type "LR6x6.T" *) IMPORT LongRealExtraExtras; CONST N = 6; TYPE T = ARRAY [0..N-1] OF ARRAY [0..N-1] OF LONGREAL; TYPE ElemT = LONGREAL; CONST DefaultElemFmt = LongRealExtraExtras.ToText; END LR6x6Rep.