in reply to Re: Re: late binding behavior in hash definition
in thread late binding behavior in hash definition

I'm not kidding. Some languages have something a little like that. But you quickly get into big problems. Consider:
my $x = not $x; my $y = $y-1;
or
my @a = (@a, 3);
for example.