Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    
    my %a = (one => [[],[],[]]);
    print $#{$a{"one"}} + 1;
    
  2. or download this
    use Data::Dumper;
    
    ...
    
    my %a = (one => [ ['a','b'],['c','d'] ]);
    print Dumper(@a{one});
    
  3. or download this
    $VAR1 = [
              [
    ...
                'd'
              ]
            ];