commit
16312a9d81
1 changed files with 22 additions and 0 deletions
22
src/potato.java
Normal file
22
src/potato.java
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue