document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class HelloWorld {
  2.  
  3.     // method main(): ALWAYS the APPLICATION entry point
  4.     public static void main (String[] args) {
  5.     System.out.println ("Hello World!");
  6.     }
  7. }
');