Guest User

Untitled

a guest
Apr 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. public class TestDog {
  2. public static void main(String[] args){
  3. Animal1 a = new Animal1();
  4. Animal1 b = new Dog();
  5.  
  6. a.move();
  7. b.move();
  8. }
  9. }
Add Comment
Please, Sign In to add comment