From 3c6c69a3a0b15bf6ee6dcd7d085408c790afcd9b Mon Sep 17 00:00:00 2001 From: Kevin Xiao <xckevin@cs.washington.edu> Date: Tue, 6 Feb 2024 14:19:17 -0800 Subject: [PATCH] Update file Products.java --- Products.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Products.java b/Products.java index beb01a9..bb7609e 100644 --- a/Products.java +++ b/Products.java @@ -1,6 +1,14 @@ /* check out these products! */ public class Products { /* a good class, but not as good as cse391 */ - + public Product rairai77sProudct() { + return new Product( + "Cheeto Dust", + "Just the good part (spicy)", + "cheetos.png", + "News about cheeto dust taking over", + 42.024 + ); + } public Product kevinsProduct(){ return new Product( "Basketball", -- GitLab