public class Penguin extends Bird { // no new attributes -- just use the ones from Animal & Bird public Penguin() { System.out.println(" just created a penguin"); } public boolean canFly() { return false; } public String toString() { return "Tux"; } }