hello world , swing style
Thursday, February 19th, 2009hello world , swing style
import javax.swing.JOptionPane;
public class Swing {
public static void main(String[] args) {
JOptionPane.showMessageDialog( null, "Hello World!" );
}
}
