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

Upload New File

parent 360b6073
public class Iguana extends Reptile {
public void Bask() {
System.out.println("The iguana basks in the sun.");
}
public Iguana(String name) {
this.name = name;
this.diet = "plants, leaves, and fruit";
this.habitat = "desert";
this.description = "This animal is an iguana; a medium-sized burrowing lizard";
this.classification = "Reptile";
}
}
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