|
Need help with this code?
package javaapplication11;
import javax.swing.JOptionPane;
public class HelloApp{
public static void main(String[] args) {
Also, there seems to be something wrong with the JOptionPane but I can't figure it out
{
JOptionPane.showMessageDialog
(null, "Hello, World!", "Greeter"
JOptionPane.INFORMATION_MESSAGE);
}
}
}
It absolutely refuses to compile. I have no idea what to do next.
Last edited by dannyboi; 07-25-2012 at 08:25 PM..
|