in reply to Re: Count the number of parameters
in thread Count the number of parameters

I just found scalar(@whatever) in perldata ;-) Same thing! Thanks!

Replies are listed 'Best First'.
Re: Re: Re: Count the number of parameters
by vek (Prior) on Jun 02, 2003 at 04:31 UTC
    FWIW, you don't need to use scalar, as my $count = @some_array; will suffice.

    -- vek --