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

/**
 *
 * @author felix
 */
public class Animal {
    void comer() {
        System.out.println("Animal Comiendo");
    }
}
