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


in reply to Re^2: How to export several modules intu users name space to not have a use ...; use ...; use ...; with the same modules all over again
in thread How to export several modules intu users name space to not have a use ...; use ...; use ...; with the same modules all over again

use strict; is lexical-scope-wise, it is specially designed to behave this way, so you can write
use strict; .... { no strict; .... } # and here 'use strict' is in effect;
this is why