Target.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Lupine: example interface
Andrew Birrell September 14, 1983 9:06 am
Bob Hagmann February 11, 1985 9:18:37 am PST
DIRECTORY
Rope USING[ ROPE ];
Target: CEDAR DEFINITIONS =
BEGIN
Basic: PROC;
Simple: PROC[first: INT, second: REF INT] RETURNS[a: Rope.ROPE, b: ATOM];
Reason: TYPE = { x, y, z };
Exception: ERROR[why: Reason];
Consultation: SIGNAL;
END.