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

Are you kidding? Mathematical expansion like that would kick ass.

japhy -- Perl and Regex Hacker
  • Comment on Re: Re: late binding behavior in hash definition

Replies are listed 'Best First'.
Re: Re: Re: late binding behavior in hash definition
by Dominus (Parson) on Nov 22, 2000 at 21:29 UTC
    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.