import javax.swing.JFrame;

/**
 * @author Remi Forax
 */
public class HelloSwing {

  public static void main(String[] args) {
    JFrame frame=new JFrame();
    frame.setTitle("HelloSwing");
    frame.setSize(400,300);
    frame.show();
  }
}
