Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 2, 2019 17:59
Embed
What would you like to do?
ArrayList<Producto> productos = new ArrayList<>();
// Le agregamos datos
productos.add(new Producto("123", "Gansito", 20f));
productos.add(new Producto("456", "Galletas Chokis", 12f));
productos.add(new Producto("7879876456", "Doritos", 5.5f));
Producto busqueda = new Producto("123", "Gansito", 20f);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment