In article <[EMAIL PROTECTED]>, Ovid <[EMAIL PROTECTED]> wrote:
> Note that the following does not trigger this: > > use UNIVERSAL::require; > use CGI qw<no_such_function>; CGI has the nifty feature of auto-generating functions from its import list to turn them into HTML generating functions: use UNIVERSAL::require; use CGI qw<no_such_function>; print no_such_function( "Hello" ); The output is: <no_such_function>Hello</no_such_function>