Help for this page

Select Code to Download


  1. or download this
    my $record = REC->new(
         NAME => 'John Smith',
    ...
         RANK => 'Tier 1',
         URL => 'http://somesite.com',
    );
    
  2. or download this
    NAME=John Smith
    AGE=15
    RANK=Tier 1
    URL=http://somesite.com
    )
    
  3. or download this
    my record =map{
    s/#.*//;
    ...
    s/\s+$//;
    m/(.*?)\s*=\s*(.*)/;
    } read_file($file);