Help for this page

Select Code to Download


  1. or download this
    my $coderef = \&some_subroutine;
    
    ...
        #...do something with @_...
        return ($value1, $value2);
    }
    
  2. or download this
    my ($foo,$bar) = some_subroutine('arg1');