- or download this
my @hexv;
...
my @vals = split ' ', $_;
@hexv = (@hexv,@vals)
}
- or download this
my @hexv;
while (<DATA>) {
push @hexv, split;
}
- or download this
my @hexv = map split, <DATA>;
- or download this
my $endex = scalar @hexv - 1;
- or download this
my $endex = $#hexv;
- or download this
foreach my $index ( 0 .. $endex ){
last if $index == $endex;
- or download this
foreach my $index ( 0 .. $endex - 1 ){