18

return (this.isBad) ? true: false;

Comments
  • 3
    @rtfm you just pushed further the knife stabbing at my eye...
  • 6
    return (this.isBad.toString() != "true") ? "false".toBool() : "true".toBool();
  • 10
    return String (MessageDigest.getInstance("MD5").digest (Boolean (this.isBad ()).toStting ().getBytes ())).equals (String (MessageDigest.getInstance("MD5").digest (Boolean.TRUE.toString ().getBytes)) ? !!Boolean.True : Boolean (!true);

    My Masterpiece
  • 4
    @Awlex you are one of the rare guys that get paid by typed characters, right?
  • 4
    I know people who just do

    return this.isBad

    This always makes me so angry /s
  • 0
    @Codex404 I'd rather have
    return true

    What could go wrong? :D
Add Comment