Forgot your password?
typodupeerror

Comment Re:truth sucks (Score 1) 454

Here's how I understood your comment: if (workOutput == good) { if (hours == long) { careerGrowth = TRUE; } else { careerGrowth = TRUE; } } else { if (hours == long) { careerGrowth = FALSE; } else { careerGrowth = FALSE; } } However, I'm pretty sure this code can be refactored to: if (workOutput == good) { careerGrowth = TRUE; } else { careerGrowth = FALSE; } Therefore, long hours don't matter.

Slashdot Top Deals

Term, holidays, term, holidays, till we leave school, and then work, work, work till we die. -- C.S. Lewis

Working...