document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //HelloWorld3.java  MrG 20110912
  2. //purpose: helloworld with GUI input dialog box
  3. //required file: HelloWorld3.java
  4. //translator phase: javac HelloWorld3.java
  5. //interpreter phase: java HelloWorld3
  6. import javax.swing.JOptionPane;
  7. public class HelloWorld3
  8. {
  9.     public static void main(String[] args)
  10.     {
  11.         String myName = JOptionPane.showInputDialog("name? ");
  12.         System.out.println("hello, " + myName + ", how about a nice game of chess?");
  13.         System.exit(0);
  14.     }
  15. }
');