I have a tab delimited file, that looks like
a stuff morestuff
a otherstuff morestuff
a yetmorestuff things
b stuff morestuff
b things2 3things
I read the file into an array @hitlist. Individual lines are parsed as arrays @array. I want to take the element @array[0] and make an array by that name. How do I go about doing that? I know that I can call up @array[0] by $array[0] but I can't make a new array called @\$array[0] or @$array[0].
What did I miss?
thanks