Context and Array Interpolation
Learn how context affects arrays and how arrays interpolate in Perl.
We'll cover the following...
We'll cover the following...
Arrays and context
In list context, arrays flatten into lists. If we pass multiple arrays to a normal function, they will flatten into a single list:
Within the function, @_ will contain nine elements, not two, because list ...