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

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

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

/**
 * This class represents an ant.
 */
public class Ant extends Insect {

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

  public String name() {
    return "ant";
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy