Advertisement
glee20

Animal Cat

Oct 4th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.16 KB | None | 0 0
  1. class Cat extends Animal {
  2.     public Cat(String name, int legs){
  3.         super(name, legs);
  4.     }
  5.    
  6.     String noise() {
  7.         return "Meow";
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement