Help for this page

Select Code to Download


  1. or download this
    return &$ref;
    
  2. or download this
    my @a;
    if(wantarray) {
    ...
    return @a;
    #or 
    return wantarray ? @a : $a[0];