-- File: SubCourierImpl.mesa - last edit: -- AOF 12-Aug-87 18:46:03 -- Copyright (C) 1987 by Xerox Corporation. All rights reserved. DIRECTORY Courier USING [Create], CommSwitches USING [dontStartXNS], Runtime USING [GlobalFrame], System USING [switches]; SubCourierImpl: PROGRAM IMPORTS Courier, Runtime, System = BEGIN IF System.switches[CommSwitches.dontStartXNS] = up THEN BEGIN him: PROGRAM = Runtime.GlobalFrame[LOOPHOLE[Courier.Create]]; START him; END; END...