public class ButtonExample {
  
  public static void main(String[] args) {
 
    ButtonWindow lw = new ButtonWindow('a');

    // This tells the window to pack its contents together so that 
    // it looks nice.
    lw.pack();
    
    lw.setVisible(true);
  }
}
