in reply to Re^2: Possible to make alias for 'use' ?
in thread Possible to make alias for 'use' ?

strict is lexically scoped, this won't die either
sub Foo { use strict; @_ } $x = 1;

If you want to fiddle with strict/warnings, see Toolkit, nonsense...

Replies are listed 'Best First'.
Re^4: Possible to make alias for 'use' ?
by exilepanda (Friar) on Oct 07, 2011 at 07:36 UTC
    Hmm... I just wish to see if there's a way to make an alias to use() anyway... which they might act identically..
      No
        Oh... no luck. Thank you very much anyway! =)