# No aliasing... foreach my $thing (@array) { # $thing is now an *alias* for something in @array # In reality there is a layer of indirection here # from the concept of $thing to the array, but you # do not have to write the dereferencing since Perl # hid it for you in $thing # ... } # Alias over