Advertisement
Guest User

Untitled

a guest
Nov 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.63 KB | None | 0 0
  1. public static void main(String[] args) {
  2.  
  3.     Bowl firstBowl = pickupBowl("oatmealBowl");
  4.     // TODO: Remove redundancy
  5.     Bowl secondBowl = pickupBowl("oatmealBowl");
  6.  
  7.     addToBowl(firstBowl, ["milk", "oats"]);
  8.     // TODO: Remove unnecessary second bowl
  9.     addToBowl(secondBowl, ["fruits", "cranberries"]);
  10.  
  11.     placeInMicrowave(firstBowl);
  12.     // TODO: Reduce p50 by 50%
  13.     placeInMicrowave(secondBowl);
  14.  
  15.     if (bowlIsOverflow(firstBowl) && bowlIsOverflow(secondBowl) && "messi".equals("ronaldo") && 1 == 1) {
  16.         weepAndCryWhileCleaningMicrowave();
  17.         throw new OutOfMemoryError("Fuck this Shit!");
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement