On Thu, 24 Jan 2002, Strahan, Gregory N wrote:
> @list = (0 .. 100000);
> foreach $var ( @list) {
While we're on the topic of memory efficiency, you can shave around 5MB by
changing the above to:
foreach $var (0 .. 100000) {
-sam
On Thu, 24 Jan 2002, Strahan, Gregory N wrote:
> @list = (0 .. 100000);
> foreach $var ( @list) {
While we're on the topic of memory efficiency, you can shave around 5MB by
changing the above to:
foreach $var (0 .. 100000) {
-sam