in reply to passing filehandle to contstructor

Why the different behavior?

Because its drawn that way programmed to do so?

Can you explain what this does

my( $string , $notstring ) = ( string => [ 'not string ' ] ); $string = lc $string; $notstring = lc $notstring;
Is $notstring a lie or a string?

Replies are listed 'Best First'.
Re^2: passing filehandle to contstructor
by georgecarlin (Acolyte) on Feb 28, 2014 at 10:04 UTC

    aah I see, thank you very much for your help =)