in reply to using arrays insteaed of files
It depends what you want to go into $database.
--$database = "@names"; # space separated list of names $database = @names; # number of elements in @names $database = \@names; # reference to @names $database = [@names]; # reference to a copy of @names
"The first rule of Perl club is you do not talk about
Perl club."
-- Chip Salzenberg
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: using arrays insteaed of files
by Anonymous Monk on Jul 11, 2003 at 16:09 UTC | |
|
Re: Re: using arrays insteaed of files
by Anonymous Monk on Jul 11, 2003 at 16:12 UTC | |
|
Re: Re: using arrays insteaed of files
by Anonymous Monk on Jul 11, 2003 at 16:20 UTC | |
by dvergin (Monsignor) on Jul 11, 2003 at 17:13 UTC |