in reply to array naming

If I get your question right, you need something like this:
$var = "some_stupid_name"; @{$var} = qw(foo bar baz); print @some_stupid_name;
See 'perldoc perlref' for more information.

Replies are listed 'Best First'.
RE: Re: array naming
by KM (Priest) on Aug 14, 2000 at 22:46 UTC
    Also, look at these articles as to why you shouldn't (or may not want to) do this.

    Cheers,
    KM

RE: Re: array naming
by jrsmith (Pilgrim) on Aug 14, 2000 at 22:48 UTC
    thanx this is what i needed.. i'm proud of myself actually, this is what i had done more or less as a test to see if it would work, and it turned out to be right :)