Help for this page

Select Code to Download


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