You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
224 B
Perl

5 years ago
#The name of the hash is preceded by a "%" symbol.
%employee = (
"Name" => "AA",
"Phone" => "(999) 555-1234",
"Position" => "CEO"
);
print $employee{"Name"};
$employee{"SSN"}="999-333-2345";