in reply to passing subroutine arguments directly into a hash

how about this way? f(h=>1, s=>2, d=>3); sub f { my %hash = @_; }
  • Comment on Re: passing subroutine arguments directly into a hash