Really true?

December 20th, 2008 Quick link: http://oe.lv/308

>> Why do you write (br.ready()==true), when (br.ready()) is sufficient and idiomatic?
> I want to fully certain that br.ready() is equal to true.
Why stop there? This will test that br.ready() *REALLY* is true:

if (((br.ready() == true) == true) && ((br.ready() == true) != false))
No comments yet.

TOP