while (Alive)
{
if (Hungry)
EatBreakfast();
if (BankAccount.Value + Wallet.Value <= 0)
GoToWork(new TimeSpan(8, 0, 0));
if (Hungry)
if (DateTime.Now.DayOfWeek == DayOfWeek.Sunday)
Eat(Restaurant.CallFor("Pizza"));
else
Eat(CookSomething(DishType.Healty));
while (DateTime.Now.Hour < 23)
WatchNextEpisode(CurrentSeries, "http://netflix.com");
SleepUntil(6, 30, 0);
}