in reply to Re: How do I populate a ML hash from an array?
in thread How do I populate a ML hash from an array?

Why don't you just use $hash{join $;, @list}= 1 instead?

        - tye (but my friends call me "Tye")

Replies are listed 'Best First'.
Re: (tye)Re2: How do I populate a ML hash from an array?
by unixdown (Scribe) on Mar 01, 2001 at 03:35 UTC
    Because that would produce:
    $hash{onetwothree} = 1
    instead of
    $hash{one}{two}{three} = 1