Beispiel #1
0
 public void yellingForFood() {
   System.out.println("Is anybody here to give me some food?");
   Cook c = new Cook();
   System.out.println("Cook is ready to cook.");
   // Cook starts to cook all dishes he knows one by one.
   c.makeBurger();
   c.makeFish();
   // More food....
 }