in reply to Re: Never
in thread Never-to-use Perl features?

You don't like prototypes? Why's that?

-Tats

Replies are listed 'Best First'.
Re: Never
by Abigail-II (Bishop) on May 14, 2003 at 22:44 UTC
    sub foo ($$) { } my @bar = (1, 2); foo (1, 2); # Fine. foo (@bar); # Compile time error.

    Abigail