http://qs1969.pair.com?node_id=11128558


in reply to Re^2: Closure Over Scalar?
in thread Closure Over Scalar?

Yes. The reason I don't like string literals as hash keys, is it's too easy in some contexts to create data on one hash key, look for it with another key, and decide that nothing interesting happened. I'd much prefer the interpreter tell me "no such variable" -- I'd rather have the explicit message, rather than a quiet failure.

And missing out the + to avoid string interpolation of the bareword is something I'm likely to do.

In production code, I try never to have string literals, except where they are assigned to variables or constants. And since, in Perl, constants are a bit funny, I use scalars as being less likely to be accidentally overwritten.

I liked the idea of restricted keys, such as in Hash::Util, though I can still mistype string literals when accessing hashes, so "constant" scalars are still valuable to me.

-QM
--
Quantum Mechanics: The dreams stuff is made of