in reply to Re^2: An Interesting Gotcha With use/require (a fix)
in thread An Interesting Gotcha With use/require

It's useful (or can be) in programs that use use. Note that use (quoting the documentation) is equivalent to:

BEGIN { require Module; import Module LIST; }

and "import Module List" is "Module->import( List )", which is "using a class" even if 'Module' isn't object-oriented.

If you never use use, then that code will never matter.

- tye        

Replies are listed 'Best First'.
Re^4: An Interesting Gotcha With use/require (a fix)
by periapt (Hermit) on Feb 10, 2005 at 13:35 UTC
    Hmmm, thanks tye I'll definitely take a closer look at this

    PJ
    use strict; use warnings; use diagnostics;