/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author felix
 */
public class Caballo extends Animal{
  
    @Override
    void comer(){
        //super.comer();
        System.out.println("Caballo comiendo");
    }

}
