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


in reply to Re: (nearly) readonly globals
in thread (nearly) readonly globals

Using local creates a temporary instance of the named variable, and you can do what you like with it.

But this does not apply to all special globals, i.e.:

% perl -e 'local $1 = 1' Modification of a read-only value attempted at -e line 1. % perl -e 'local $^S = 1' Modification of a read-only value attempted at -e line 1.

-- Frank