I have an array of names, and for each name I wish to create a hash with that as its variable name. Something like this
@list = ('Name1', 'Name2', 'Name3')
for ($i = 0; $i < scalar @list; $i++) {
%(list[$i]);
}
Can anyone tell me if this is possible?