-- TEditDriver.mesa; Edited by McGregor on May 19, 1982 4:17 pm
-- this file should go away

DIRECTORY
Rope USING [Ref],
TEditImpl;

TEditDriver: PROGRAM

EXPORTS TEditImpl = BEGIN

style: Rope.Ref ← "Default";

GetTEditParam: PUBLIC PROC RETURNS [Rope.Ref] =
 {RETURN[style]};

END.