Guest User

Untitled

a guest
Apr 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. class Parent {
  2. void name() {
  3. System.out.println("Parent");
  4. }
  5. }
  6.  
  7. class Child {
  8. void name() {
  9. System.out.println("Child");
  10. }
  11. }
Add Comment
Please, Sign In to add comment