Help for this page

Select Code to Download


  1. or download this
    sub do_something
    {
    ...
    }
    
    ($someValues_aref, $endValue) = do_something();
    
  2. or download this
    (@someValues) = do_something();
    $endValue = pop(@someValues);