All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.pdx.cs410J.lang.Turkey Maven / Gradle / Ivy

The newest version!
package edu.pdx.cs410J.lang;

/**
 * This class represents a Turkey.  Turkies are birds that do not fly.
 */
public class Turkey extends Bird {

  public Turkey(String name) {
    this.name = name;
  }

  public String says() {
    return "Gobble";
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy