in reply to Re: Storing data in Array
in thread Storing data in Array

Actually I have been very impressed with how efficient Perl is on performance. Memory, well that is another story. But try this:
foreach (1..1000000) { $str .= "hello\n"; }
Now try its equivalent in another language, like C++, JavaScript, etc.

Impressed yet? You should be!