I have lines of code with two large arrays (so can’t just write it into a hash) which I want to connect with a hash.
For example, $array1[0] becomes the key and $array2[0] becomes the value and so on to $array1[150],$array2[150].
Any ideas how I do this?
You can do it in a single assignment:
It’s a common idiom. From perldoc perldata on slices:
When I see one of these I see a mental image of a zipper…