Help for this page

Select Code to Download


  1. or download this
    my %dramatis_personae = (
        humans => [ 'hamnet', 'shakespeare', 'robyn', ],
        faeries => [ 'oberon', 'titania', 'puck', ],
        other => [ 'morpheus, lord of dreams' ],
    );
    
  2. or download this
    foreach my $group (keys %dramatis_personae) {
        print "The members of $group are\n";
        foreach (@{$dramatis_personae{$group}}) {
            print "\t$_\n";
        }
    }