- or download this
FullName : User1
Home Address : 111 address lane
...
FullName : User2
Home Address : 222 address lane 2
Phone : 777-777-7777
- or download this
#!/usr/bin/perl
use strict;
...
foreach my $key (keys %hash) {
print "$key = $hash{$key}\n";
}
- or download this
User:
User1
...
User2
222 address lane 2
777-777-7777
- or download this
$hash{$x}= {
Name => $name,
Addr => $address,
Phone => $phone