document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2.  * Latihan 1 Hello World.
  3.  *
  4.  * @author (Daffa Amanullah Setyawan)
  5.  * @version (4-10-20)
  6.  */
  7. public class HelloWorld
  8. {
  9.     /**
  10.      * Constructor for objects of class HelloWorld
  11.      */
  12.     public HelloWorld()
  13.     {
  14.        System.out.print("Hello World!");
  15.     }
  16. }
');