Quoting Scott Wiersdorf ([EMAIL PROTECTED]):
> My shortest try is this (10 characters w/o whitespace):
> 
>     if( $a%2 .. $a-- ) {
>         do_something();
>         ...
>     }

I'm a little confused, but I'm assuming you're allowed to stipulate what the
true value is. In which case

if ($a&&$a--) {
   do_something();
 }
 
works, provided the true value is 1.

Adam

-- 
Adam Rice -- [EMAIL PROTECTED] -- Blackburn, Lancashire, England

Reply via email to