Help for this page

Select Code to Download


  1. or download this
    $household = { 23 => { last => 'Smith', first => 'Mary' }, 
                   22 => { last => 'Jones', first => 'Bob' }
    };
    
  2. or download this
    my $key = 23;
    my $person = $household->{$key};
    my %name = %$person;
    my @slice = @name{'first', 'last'};