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

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

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

/**
 * This class represents a human being (not a human doing).
 */
public class Human extends Mammal {
  public Human(String name) {
    this.name = name;
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy