/*
 * 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_8.Almacen;

/**
 *
 * @author felix
 */

public class prueba {
    static public void main(String args[]) {
        Almacen almacen = new Almacen();
        Productor p = new Productor(almacen, 1);
        Consumidor c = new Consumidor(almacen, 1);
        p.start();
        c.start();        
    }
    
}
