in reply to Re: deep usage of if-else!!
in thread deep usage of if-else!!

if( do{$o->check(...); ! $o->state} ){ action.. }
Why the do block instead of a comma?
if($o->check(...), ! $o->state} ){ action.. }
...not that I think that putting multiple things inside the conditional of an if is a good idea.