An Int64.T is a 64-bit integer whether compiled on 32-bit or
   64-bit machines.  This interface can be used to instantiate
   generic interfaces and modules such as Table and List. 
INTERFACEInt64 ; IMPORT Long; TYPE T = BITS 64 FOR [ -16_7fffffffffffffffL-1L .. 16_7fffffffffffffffL ]; CONST Brand = "Int64"; PROCEDURE Equal(a, b: T): BOOLEAN;
 Return a = b. PROCEDURE Hash(a: T): Long.T;
 Return a. PROCEDURE Compare(a, b: T): [-1..1];
Return-1ifa < b,0ifa = b, or+1ifa > b.
END Int64.