public class JButtonExample {
  
  public static void main(String[] args) {
    JButtonWindow bw = new JButtonWindow('a');

    // This tells the window to pack its contents
    // together so that it looks nice.
    bw.pack();
    
    bw.show();
  }
}
