Help for this page
sub add2arr { my ($value,@tmp) = @_; ... return @tmp; } # and call it like @tmp = add2arr($value,@tmp)
push(@tmp,$value)