Guest User

Untitled

a guest
Mar 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. // save as Test.java
  2. package encap.example
  3. class Test{
  4. public static void main(String args[]){
  5. Employee emp1 = new Employee();
  6. emp1.setAge(13);
  7. System.out.println(emp1.getAge());
  8. }
  9. }
Add Comment
Please, Sign In to add comment