- or download this
my $fields;
eval $_;
die if $@;
my ( $name, $location, $mapref, $type, $description ) = @$fields;
- or download this
#! perl
use strict;
...
__DATA__
$name="MyName";$location="MyLoc";$mapRef="MyRef";$type="MyType";$descr
+iption="MyDesc";
- or download this
$fields = ["MyName","MyLoc",undef,"MyType","MyDesc"];
- or download this
use strict;
use warnings;