document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.  
  2. /**
  3.  * Write a description of class Person here.
  4.  *
  5.  * @author Ahmad Lamaul Farid
  6.  * @version 28 Oktober 2020
  7.  */
  8.  
  9. public class Person
  10. {
  11.     private final String name;
  12.    
  13.     public Person(String newName)
  14.     {
  15.         this.name = newName;
  16.     }
  17.    
  18.     public String getName()
  19.     {
  20.         return name;
  21.     }
  22. }
');