Help for this page

Select Code to Download


  1. or download this
    $foo = 3;
    @bar = (1, 2, 3);
    
    return $foo;       # (3)
    return @bar;       # (1, 2, 3)
    
  2. or download this
    return (\@foo, \@bar);
    ...
    
    my ($fooref, $barref) = your_function();