Friday, February 24, 2006

More programmer amusement

I'm not gonna name names... but I think some of these snippets I've seen with my own two eyes!

1 comment:

Unknown said...

Let's not forget the fail safe boolean check:

boolean isTrue(boolean bool)
{
if(bool == true)
return true;
else
return false;
}