Last modified on Mon Nov 1 10:01:54 1993 by luca
MODULE========= Add or remove imports here =========; IMPORT ObliqOnline; Main
IMPORT ObLibM3, ObLibM3Help; (* rd,wr,lex,fmt,pickle,process,thread *) IMPORT ObLibUI, ObLibUIHelp; (* color,form *)
==============================================
CONST Greetings = " obliq -ui (obliq with standard and ui libraries) (say \'help;\' for help)"; PROCEDURERegisterLibraries () = BEGIN
========= Add or remove libraries here =========
ObLibM3.PackageSetup(); ObLibM3Help.Setup(); ObLibUI.PackageSetup(); ObLibUIHelp.Setup();
================================================
END RegisterLibraries; BEGIN ObliqOnline.Setup(); RegisterLibraries(); ObliqOnline.Interact(ObliqOnline.New(Greetings)); END Main.