Fabergé Egg
en.wikipedia.org2 ポイント投稿者 denizozger0 コメント
// Check to see if the employee is eligible for full benefits
if ((employee.flags & HOURLY_FLAG) &&
(employee.age > 65))
// Good:
if (employee.isEligibleForFullBenefits())
```