Help for this page

Select Code to Download


  1. or download this
        my (@r, $r);
    
    ...
        # ... later
    
        return wantarray ? @r : $r;
    
  2. or download this
        wantarray ? @r : $r = &$code;