Edward Peschko wrote:
> If 
>       %a = @b;
> does 
> %c = map{ ($_ => undef ) }  @a;

Yep... particularly considering something neat like

        keys(%a) = @b;

could be defined to do that.  Or, even niftier

        @%a = @b;

-- 
John Porter

Reply via email to