Help for this page

Select Code to Download


  1. or download this
    my $A = {};
    bless $A, 'class A';
    $A->{arrayholder} = qw//;
    return $A
    
  2. or download this
    my $B1 = B->new();
    my $B2 = B->new();
    my @Bees;
    push @Bees, $B1, $B2;
    
  3. or download this
    foreach my $B ($A->{arrayholder}) {
        print Dumper $B;
        print $B->Bfoo;
    }