/* Trivial application that displays a string - 4/96 PNL Updated stationery - 8/2000 C.Phan */ public class TheViking { public static void main(String args[]) { GUI myGui = new GUI(); myGui.setSize(400, 300); myGui.setVisible(true); } }