Help for this page

Select Code to Download


  1. or download this
    my $dumpedValues = $dumper->Dump();
    ...
    eval $dumpedValues;
    
  2. or download this
    $name="MyName";$location="MyLoc";$mapRef="MyRef";$type="MyType";$descr
    +iption="MyDesc";
    
  3. or download this
    my ( $name, $location, $mapref, $type, $description ) = @$fields;
    
  4. or download this
    $fields = [ qw{name location mapref type description} ];
    
  5. or download this
    ### Evaluate perl record string to set $fields array reference
    my $fields;
    eval $_;
    die if $@;