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

package Escuela;

/**
 * Este clase se hizo para probar que funciona la Escuela
 * @author felix
 */
public class prueba {
    
    static public void main(String args[]) {
        Escuela mi_Escuelita =  new Escuela("Universidad de los Pobres");
        mi_Escuelita.Lista_Alumnos_por_Materia();
        mi_Escuelita.Lista_Materias_por_Alumnos();
    }
}
