import javax.swing.*;import javax.swing.border.*;import javax.swing.event.*;
/**   Go.java   This class is the Main class for go! game. It will load the userInterface   panel and shows it.
   @author Sugiharto Widjaja   @version 11.20.2001   */public class Go{   public static void main(String[] args)   {      // Create the UserInterface panel
      UserInterface gameFrame = new UserInterface();
      // Set the default close operation
      gameFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      // Show the frame
      gameFrame.show();
   }
}