Help for this page

Select Code to Download


  1. or download this
    use IO::File;
    use Data::Dumper;
    ...
    }
    
    print Dumper(\@vars);
    
  2. or download this
    @vars = [
             { num => '123', txt => 'abc' },
             { num => '234', txt => 'frt' },
             ...
            ];
    
  3. or download this
    $var[0]->{num}, $var[1]->{txt}, etc...