Create potato.java

This commit is contained in:
inventorman101 2013-11-09 16:01:25 -07:00
parent 8696782d4e
commit 059d904573

22
src/potato.java Normal file
View file

@ -0,0 +1,22 @@
public class Potato
{
public static void Main(String[] args}
{
Potato potato = new Potato();
potato.prepare();
}
public boolean prepare(Object bob)
{
Potato bob = bob;
bob.addSourCream();
bob.addChives();
bob.addButter();
if(bob.isDelicous())
{
return true;
}
}
}