# For example while (my $el = pop @els){ # Body of loop } # Is it equivelant to this? { my $el = pop @els; { # Body of loop } } # Or this? { my $el = pop @els; # Body of loop }