/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package Capitulo_4.Agenda;

/**
 *
 * @author felix
 */
public class Prueba {
    static public void main(String args[]){
        Agenda mi_agenda = new Agenda();
        System.out.println(mi_agenda);
        
        
        System.out.println(mi_agenda.busca("Felix"));
    }
}
