Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    } read_file($file);
    
    print Dumper (\%record);
    
  2. or download this
    $VAR1={
                     'Name' =>John Smith',
    ...
                     'RANK' => 'Tier 1',
                     'URL' => 'http://somesite.com'
                   };
    
  3. or download this
    $VAR1= bless( {
                     'Name' =>John Smith',
    ...
                     'RANK' => 'Tier 1',
                     'URL' => 'http://somesite.com'
                   }, 'REC' );