in reply to how many elements in array?
or
UPDATE
you should also check out the the basic datatypes, three node
or#!/usr/bin/perl -w use strict; my @one=(1,2,3,4,5,6); print scalar(@one);
depends on what you want.print $#one;
UPDATE
you should also check out the the basic datatypes, three node
In Section
Seekers of Perl Wisdom