Help for this page

Select Code to Download


  1. or download this
    my @birds = @{ $self->{farmBirds} };
    
  2. or download this
    package Farm;
    
    ...
        return @{ $self->{farmBirds} };
    }
    1;
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    ...
    my @birds = $farm->getFarmBirds();
    
    print "@birds\n";