Help for this page

Select Code to Download


  1. or download this
       blah();       # void
       $x = blah();  # scalar
       @x = blah();  # list
    
  2. or download this
       my $x = [];  # $x is now an (empty) arrayref
    
       $x = blah(); # $x is a scalar - wantarray reports 0