TTY.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Tim Diebert: November 16, 1985 1:01:15 pm PST
DIRECTORY
IO USING [STREAM];
TTY: CEDAR DEFINITIONS
~ BEGIN
Create: PROC [] RETURNS [stream: IO.STREAM];
Creates a simple IO stream ontop of a dumb terminal.
OutOfInstances: ERROR; -- raised by Create
END.