in reply to Re: Why is "odd number of elements in hash assignment" warning and not error?
in thread Why is "odd number of elements in hash assignment" warning and not error?
I understood that point to mean one of these two, probably the first:
sub nothing { return } sub something { return undef } my %foo = ( abc => nothing() ); my %bar = ( abc => 123, something() );
|
|---|