- or download this
my @newrows = qw( value1 value2 );
my @printrows;
...
print $printrows[0][0], "\n"; # should be Value1?
print $printrows[1][1], "\n"; # should be Value2?
print "\n";
- or download this
push @{$newhash{ IP }}, @newrows;
- or download this
push @{$newhash{ IP }}, @newrows;
- or download this
@printrows = $newhash{ IP };
- or download this
print $printrows[0][0], "\n"; # should be Value1?
- or download this
print $printrows[1][1], "\n"; # should be Value2?