Commit bdcbdde9 authored by charlotte.kerr's avatar charlotte.kerr

Upload New File

parent d15235d9
public class Lion extends Mammal {
public void Roar() {
System.out.println("The lion roars.");
}
public Lion (String name) {
this.name = name;
this.diet = "meat";
this.habitat = "savannah";
this.description = "This animal is a lion; a highly social big cat";
this.classification = "Mammal";
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment