in reply to Re^2: Trying to close Expect.pm telnet timeout situation to avoid overwhelming a small target device
in thread Trying to close Expect.pm telnet timeout situation to avoid overwhelming a small target device
I believe you are wrong (or at least the [] is important as almut suggests):
use Data::Dumper; my $blessedBe = bless {}, 'Wibble'; print Dumper $blessedBe; print Dumper [$blessedBe];
Prints:
$VAR1 = bless( {}, 'Wibble' ); $VAR1 = [ bless( {}, 'Wibble' ) ];
|
|---|