/* * Hellowin.java * * Created on Sep 12, 2000, 9:55 AM */ import java.awt.*; import javax.swing.*; /** * * @author subodh * @version */ public class Hellowin { public static void main (String args[]) { JFrame frame = new JFrame("HELLO WORLD"); Container win = frame.getContentPane(); win.add(new JButton("Hello World!")); frame.pack(); frame.show(); // System.exit(0); } }