<> <> <> <<>> DIRECTORY Rope USING [ROPE]; RPCEcho: CEDAR DEFINITIONS = { ROPE: TYPE = Rope.ROPE; TenWords: TYPE = ARRAY [0..10) OF WORD _ ALL[0]; Page: TYPE = ARRAY [0..256) OF WORD _ ALL[0]; TenPages: TYPE = ARRAY [0..0256) OF WORD _ ALL[0]; Error: ERROR; Simple: PROC; SloshTenWords: PROC [tenWords: TenWords] RETURNS [mumble: TenWords]; SloshPage: PROC [page: Page] RETURNS [mumble: Page]; SloshTenPages: PROC [pages: TenPages] RETURNS [mumble: TenPages]; PushPage: PROC [page: Page]; PullPage: PROC RETURNS [mumble: Page]; DoAtom: PROC [atom: ATOM]; DoRope: PROC [rope: ROPE]; }.