DIRECTORY
Rope;
SeeRope: CEDAR PROGRAM IMPORTS Rope = BEGIN
See: PROC [r: Rope.ROPE] RETURNS [t: Rope.Text] = {
t ← Rope.Flatten[r];
};
END.