Help for this page

Select Code to Download


  1. or download this
        return @x;
        # same as
    ...
        return( ..., $y );
        # same as
        return wantarray ? ( ..., $y ) : $y;
    
  2. or download this
        croak( "This only makes sense in a list context!" )
            if  ! wantarray;
        # ...
        return @list;