Advertisement
skity

Tester.java

Nov 18th, 2020
548
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. public class Tester {
  2.  public static void main(String[] args) {
  3.  
  4.      Work w = new Work("Manager", 50000);
  5.      Person p = new Person("Roee", "5582",w);
  6.      System.out.println(p);
  7.      System.out.println(p.isManager());
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement