Originally posted by nepomuk
Rose? What on earth I was thinking there ...
import javax.swing.*; public class WelcomeInABox { public static void main(String[] args) { JOptionPane.showMessageDialog(null, "Welomce to Java!", "Display Message", JOptionPane.INFORMATION_MESSAGE); } }
java -cp . Welcome
Comment