http://qs321.pair.com?node_id=663582


in reply to Re: Unknown problem, throws "Useless use of privt var in void contxt"
in thread Unknown problem, throws "Useless use of privt var in void contxt"

Your explanation of => is not entirely accurate.
if ($month => 10) { ... }
is equivalent to
if ($month, 10) { ... }
The => operator does NOT wrap whatever appears on the left into a string. Instead, it allows any expression, but if a bareword is used, it turns the bareword into a string. Any other expression is left as-is, not even coerced into being a string. (Actually rolling a list into a hash will coerce the keys into strings unless the hash has some magic.)

--
[ e d @ h a l l e y . c c ]