[link] Anti-IF Campaign

By: Johnathon Wright on: June 18, 2009

"Anti-If Campaign":http://www.antiifcampaign.com/

"Avoid dangerous IFs and use Object Oriented Principles to build a code that is flexible, changeable and easily testable, and will get rid of a lot of headaches and weekends spent debugging!"

I don't necessarily agree that if statements are dangerous. Actually, having read what seems to be the only article on the site, I could abstract to say that newbie developers are far more dangerous than any single construct.

If nothing else the sit is ammusing, on the order of the "Waterfall 2006 Conference":http://www.waterfall2006.com/ .





Comments:

Just checking that you are human. What would be the result of this code?

a = 3*(4/2); b = 1; a+b

Back