document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //HelloWorld2.java  MrG 2011.0908
  2. //purpose: getting used to the system
  3. //required files: HelloWorld2.java
  4. //translator phaase: javac HelloWorld2.java
  5. //interpreter phase: java HelloWorld2 name game
  6. public class HelloWorld2
  7. {
  8.     public static void main(String[] args)
  9.     {
  10.         System.out.println("Hello, " + args[0] + ", how about a nice game of " + args[1] + "!!!");
  11.     }
  12. }
');