8

var todays_tasks = 4, completed = 0;

while(completed < todays_tasks) {
fixTask();
completed++;
todays_tasks += 2;
}

Comments
Add Comment