- or download this
my %hash = ( somekey => somevalue, ...);
- or download this
#!/usr/bin/perl -w
...
;
print Dumper(%w);
- or download this
$VAR1 = 'Sub';
$VAR2 = {
'rbscells' => 'UtranCell=RNC16-4-1',
'UtranCell=RNC16-4-2' => 'UtranCell=RNC16-4-3'
};
- or download this
...
'rbscells' => [
...
'UtranCell=RNC16-4-3' ,
]
...
- or download this
foreach my $element (@{$w{Sub}->{rbscells}})
{
print $element . "\n";
}