- or download this
%hash = ( 'george@foo.com' => 'george ); # how it is when george is ad
+ded
%hash = ('bill@host.com' => 'bill'); # bill clobbers george
- or download this
%hash = (
email => 'george@foo.com',
name => 'geroge fubar',
age => 68,
);
- or download this
my $email = params('email');
my $name = params('name');
$hash{email} = $email;
$hash{name} = $name;