/** EcoSystem will model the interactions between species in
 *  an ecosystem.
 */
public class EcoSystem{
  // main method is what Java "runs"
  public static void main(String[] args){
    // create a Species
    Species gnu= new Species();

    // print it:
    System.out.println("New species: "+gnu);

    // print its population
    System.out.println("population: "+ gnu.getPopulation());

    // change its population
    gnu.setPopulation(25);

    // reprint its population
    System.out.println("population now: "+gnu.getPopulation());
  }
}

