- or download this
return @retary, $count;
- or download this
return $count, @retary;
...
($count, @ary1) = read_data(...);
- or download this
return \@retary, $count;
...
($ary1, $count) = read_data(...);
- or download this
@ary1 = read_data(...);
$num = @ary1;
OR
$ary1 = read_data(...);
$num = @$ary1;