Help for this page

Select Code to Download


  1. or download this
    my self =shift;
    my tempBirds=[] ; # right way of initialising an array ??
    
  2. or download this
    my $self = shift;
    my @tempBirds; # no initialization needed
    
  3. or download this
    my $self = shift;
    my $tempBirds = [];