Help for this page

Select Code to Download


  1. or download this
    Name test1 test2
          kim A 20  30
          kate k 40 50
    
  2. or download this
    #!/usr/bin/perl
    
    use strict;
    ...
    
    #Data::Dumper::Useqq = 1;
    print Dumper \%hash;
    
  3. or download this
    $var1 ={ 'kim-a' =>['20',
                              '30'],
                   'kate-k' =>['40',
                                '50']}
    
  4. or download this
    $var1 ={ 'kim-a' =>[25],
                   'kate-k' =>[45']}