in reply to Re: writing each array element to a unique file
in thread writing each array element to a unique file

Except that an array is declared like so:

my @myArr = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11);

:)

You were thinking of an array ref, maybe?

my $myArr = [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 ];

Replies are listed 'Best First'.
Re^3: writing each array element to a unique file
by vladdrak (Monk) on Dec 15, 2006 at 01:49 UTC
    duh, yeah. fixed.