- or download this
#!/usr/bin/perl -w
use strict;
...
}
__END__
- or download this
$VAR1 = {
'NUMBERS' => [
...
'3'
]
};
- or download this
#!/usr/bin/perl -w
use strict;
...
}
__END__
- or download this
k:NUMBERS v:ARRAY(0x7fef9a82a168)
- or download this
my @i_numbers = $opt{NUMBERS};
- or download this
my $i_numbers = $opt{NUMBERS}; # $i_numbers is an arrayref
# or
my @i_numbers = @{ $opt{NUMBERS} }; # dereference the arrayref as you
+get it from the hash
- or download this
#!/usr/bin/perl -w
use strict;
...
}
__END__