Help for this page

Select Code to Download


  1. or download this
    %HoA = (
        flintstones    => [ "fred", "barney" ],
        jetsons        => [ "george", "jane", "elroy" ],
        simpsons       => [ "homer", "marge", "bart" ],
    );
    
  2. or download this
    $HoA{teletubbies} = [ "tinky winky", "dipsy", "laa-laa", "po" ];
    
  3. or download this
    for $family ( keys %HoA ) {
        print "$family: @{ $HoA{$family} }\n";
    }