in reply to Re^2: Converting Filehandle to Array call in Object Creation
in thread Converting Filehandle to Array call in Object Creation
printsuse strict; use warnings; use Tie::Handle::FromArray; my $fh = new Tie::Handle::FromArray ( ["a","b"] ); while (<$fh>) { print "$_*"; }
just as i would expect. can you clarify?a*b*
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Converting Filehandle to Array call in Object Creation
by ikegami (Patriarch) on Apr 16, 2005 at 00:10 UTC | |
by holli (Abbot) on Apr 27, 2005 at 19:03 UTC | |
|
Re^4: Converting Filehandle to Array call in Object Creation
by tlm (Prior) on Apr 16, 2005 at 00:33 UTC |