On Thu, Sep 13, 2001 at 01:41:11PM -0400, Andrew Stanley wrote:
> my @foo = qw(foo bar zed); # @foo, should be a part of the *foo glob?
> 
> print $b join("~", @{$b})."\n"; # I'm trying to get @foo -- @{$b}

Variables declared "my" are not part of any typeglob.

I'm not sure what you want to do, associate an open filehandle with
each of a large number of arrays?  Maybe a hash of structures or two
parallel hashes or arrays are a better solution than something based
on globs.

-John

-- 
John Tobey <[EMAIL PROTECTED]>
The US has had no budget surplus since 1969:
http://www.ustreas.gov/opc/opc0019.html
 

Reply via email to