Re: binding operators and related introspection

2006-07-17 Thread Sam Vilain
Darren Duncan wrote: > But I would also like to have an easy way to change all bindings to > the same variable at once to point to the same new variable. > [...] >my $x = 'foo'; >my $y = 'bar'; >my $z := $x;# $x and $z point to same 'foo', $y to a 'bar' >$z.rebind_all_aliases_

binding operators and related introspection

2006-07-15 Thread Darren Duncan
After confirming between Synopsis 3 and the newest Pugs that the binding operator := works as follows ... my $x = 'foo'; my $y = 'bar'; my $z := $x;# $x and $z point to same 'foo', $y to a 'bar' $z := $y; # $y and $z point to the same 'bar', $x to a 'foo' print "x,y,z are '$x