public boolean isBooleanFalse(boolean value) { boolean response = false; if (value == true) { response = false; } else { response = true; } return response; }
via thedailywtf.com
Even my CMU Intro to Programming profs did not make me do that!
trying to make logical sense out of emotions
public boolean isBooleanFalse(boolean value) { boolean response = false; if (value == true) { response = false; } else { response = true; } return response; }
Even my CMU Intro to Programming profs did not make me do that!
No comments:
Post a Comment