diff options
| author | inventorman101 <brendann755@gmail.com> | 2013-11-09 16:01:25 -0700 |
|---|---|---|
| committer | inventorman101 <brendann755@gmail.com> | 2013-11-09 16:01:25 -0700 |
| commit | 059d90457335c7cbccbf013f8c33e1b5505666ef (patch) | |
| tree | 682108c062602cbbeb4d4cf678021fa967115cbd | |
| parent | 8696782d4ee4df9d37c179a53e2ad9f60a23973b (diff) | |
Create potato.java
| -rw-r--r-- | src/potato.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/potato.java b/src/potato.java new file mode 100644 index 0000000..7ee1bb7 --- /dev/null +++ b/src/potato.java @@ -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; + } + } +} |
