4

public void today() throws Exception {
Car c = getPosessions().getCar();
c.wash();
c.wax();

Game g = getPosessions().getUnchartedFour();
while(!g.finished()) {
g.play();
Thread.sleep(1000);
}

this.eatDinnerWith(getFamily());

System.out.println("Today Rocked!");
}

Comments
Add Comment