Vincent Bufferne wrote:

> What's about:
> 
> my @foo = ( '1', '2' ,'3' );
> my $size = $#foo + 1;
> print "table size $size\n";
> 
> Ouput:
> table size 3

print "Table size: ", scalar(@foo), "\n";


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to