More programmer amusement
I'm not gonna name names... but I think some of these snippets I've seen with my own two eyes!
Check out the new Matchgrip website!
I'm not gonna name names... but I think some of these snippets I've seen with my own two eyes!
Posted by Jason at 2/24/2006 07:50:00 PM
1 comment:
Let's not forget the fail safe boolean check:
boolean isTrue(boolean bool)
{
if(bool == true)
return true;
else
return false;
}
Post a Comment