Help for this page

Select Code to Download


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