indexing description: "System's root class" class MAIN inherit WEL_APPLICATION creation main feature -- Create the applications's main window main_window: WEL_FRAME_WINDOW is once ! MainWindow ! Result.make; end; -- main function / creation procedure main is do -- open log window io.put_string ("LOG WINDOW%N%N"); -- call the WEL init function make; end; end -- class MAIN