Help for this page

Select Code to Download


  1. or download this
    sub build_list {
       my ($arg1, arg2, ...) = @_;
    ...
          return ();
       }
    }
    
  2. or download this
    sub build_list {
        ...
    ...
    
        return @list;  # list could still be empty at this point
    }