in reply to (ichimunki) re x 5: Summing the elements of multiple arrays into a new array
in thread Summing the elements of multiple arrays into a new array

No need to go through all that on current versions of perl.... If I know I'm in a 5.6.0 or newer perl environment, the first few lines of my code are usually:
#!/usr/bin/perl -T use warnings; no warnings "uninitialized";
I find that this bounds me enough to catch my screw-ups, but not enough to inhibit my coding style..

-Blake

  • Comment on Re: (ichimunki) re x 5: Summing the elements of multiple arrays into a new array
  • Download Code