Here's my latest bug, which I will work on tracking down. It's a pretty
huge blocker for everything I've been working on, so there's no sense in
spending my time elsewhere:

    sub def ($arg) {
            return $arg;
    }
    $o = 25;
    $q = def($o);
    die "Why is return value $q?" unless $q == $o;
    
The problem seems to be that any numeric argument is converted to 1 (is
that a list length?)

-- 
Aaron Sherman <[EMAIL PROTECTED]>
http://www.ajs.com/~ajs

Reply via email to