in reply to datastructure of array and hash?

Do yourself a favour and read about map:
my @array = map { "a$_" } (1..10000); my %hash = map { $_ => "a$_" } (1..10000);


holli, /regexed monk/