I came across this during the golf tournament. It would be nice if a statement like this

code:
     if $a and $b
.
.
endif

would result in false if $a is false, without evaluating $b. Because false AND anything is false.

For example, the following code errors out with "array reference out of bounds!" Because on the last iteration $c = -1

code:
$a = 1,2,3
$c=2
while $c >= 0 and $a[$c] <5
$c=$c-1
loop

I don't know if this possible or if anyone else would like to see it. But I thought I'd throw it out there.
_________________________
Eric