in reply to Re^3: Style: buried variables or double referencing?
in thread Style: buried variables or double referencing?
And now you get most of the advantages of Readonly, but performance is not a problem. (I don't like constant because I'm a big fan of interpolating, and I often have to check whether someone has a constant or function because I'm afraid that it will try to suck up arguments.)sub fake_readonly { $_[0] = $_[1]; }
|
|---|