<> <> <> <> DIRECTORY MessageWindow USING [Append], ViewerPrivate USING [EnableInput, ProcessEndOpsRegistry]; End: CEDAR PROGRAM IMPORTS MessageWindow, ViewerPrivate = BEGIN ViewerPrivate.ProcessEndOpsRegistry[]; ViewerPrivate.EnableInput[]; -- start up the input machinery MessageWindow.Append["Ready."]; END.