/* check out these products! */
public class Products { /* a good class, but not as good as cse391 */
    public Product joshsProduct() {
        return new Product(
            "Dirt",
            "The good stuff",
            "dirt.jpeg",
            "some normal brown dirt",
            0.0
        );
    }

    public Product antoniosProduct() {
	return new Product(
	    "Emacs",
	    "It's better than Vim",
	    "emacs_icon.png",
	    "GNU emacs logo",
	    0.0
	);
    }

    public Product iansProduct() {
        return new Product(
            "Pasta",
            "Very nutritious",
            "pasta.jpg",
            "Bowl of pasta",
            100.0
        );

    public Product aryasProduct() {
        return new Product(
	    "Monkey",
	    "Just an animal",
	    "monkey.jpg",
	    "monkey image",
	    4.29
	);
    }
}