Engage Coffee Break!

Coffee Break Programmers turn caffeine into code.
								do
								{
									coffeeCup.Drink();
									workTask.Execute();
									if(coffeeCup.Empty())
									{
										if(coffeePot.Empty())
											coffeePot.Make();
										coffeeCup.Refill();
									}
								}while (!workTask.Done());