naufalphew

Person

Oct 26th, 2020
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. public class Person
  2. {
  3.     private final String name;
  4.     public Person(String newName)
  5.     {
  6.         this.name = newName;
  7.     }
  8.     public String getName()
  9.     {
  10.          return name;
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment