DavidSzczesniak
12/7/2017 - 10:23 AM

Assign the same values to multiple arrays

@fred = (@barney = (2, 3, 4)); # both @fred and @barney get (2, 3, 4)
@fred = @barney = (2, 3, 4); # equivalent