Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    ...
    
    print Dumper \%hash;
    print Dumper \%hash2;
    
  2. or download this
    $ cat DATA_F.dat
    1 one
    2 two
    3 three
    
  3. or download this
    $VAR1 = {
              '2' => 'two',
    ...
              '1' => 'one',
              '2' => 'two'
            };
    
  4. or download this
    $ cat DATA_F2.dat
    1 a
    ...
    24 x
    25 y
    26 z
    
  5. or download this
    $VAR1 = {
              '13' => 'm',
    ...
              '22' => 'v',
              '1' => 'a'
            };