in reply to How strict?
in thread Command line to array

I have had to use this mode of subroutine array referring before. I used no strict only around the calling statement. This worked, but I assume it does still raise a number of issues about the correctness of breaking 'strict' code.
{ no strict; &$func_name(@list); }

Replies are listed 'Best First'.
Re (tilly) 2: How strict?
by tilly (Archbishop) on Apr 27, 2001 at 04:11 UTC
    Normally using anonymous functions would be better for this. If the person wants to name their own function, they can construct the reference themselves.

    The glaring exception is in places like AUTOLOAD routines where you are constructing the function on the fly, giving it a real name, and then calling that...