Help for this page

Select Code to Download


  1. or download this
        return @retary, $count;
    
  2. or download this
        return $count, @retary;
        ...
        ($count, @ary1) = read_data(...);
    
  3. or download this
        return \@retary, $count;
        ...
        ($ary1, $count) = read_data(...);
    
  4. or download this
        @ary1 = read_data(...);
        $num = @ary1;
    OR
        $ary1 = read_data(...);
        $num = @$ary1;