In article <[EMAIL PROTECTED]>,
 [EMAIL PROTECTED] (Mallik) writes:
>Dear Perl Gurus,
>
>What is the difference between Use and Require.

        use Foo;

is equivalent to:

        BEGIN {
                require Foo;
                Foo->import;
        }

-- 
Peter Scott
http://www.perldebugged.com/
*** NEW *** http//www.perlmedic.com/

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to