573
Subscribers
-124 hours
-17 days
-1430 days
Posts Archive
574
public class Gym {
public static void main(String[] args) {
Athlete me = new Athlete();
while (!me.goalReached()) {
if (me.energyLow())
me.drink(new ProteinShake());
me.liftWeights();
me.pushLimits();
me.recover();
}
me.celebrate();
me.setNextGoal();
main(args);
}
}
