Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import javax.swing.JOptionPane;
  2.  
  3. public class HelloWorld3
  4. {
  5.     public static void main(String[] args)
  6.     {
  7.         String myName = JOptionPane.showInputDialog("name? ");
  8.         System.out.println("Hello, " + myName + ", how about a nice game of chess?");
  9.         System.exit(0);
  10.     }
  11. }