Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

what is difference between use and require functions?

20041122 Edit by ysth: change title from "functions"

Replies are listed 'Best First'.
Re: Difference between 'use' and 'require'
by borisz (Canon) on Nov 22, 2004 at 09:41 UTC
    use is done at compiletime, where require is done at runtime. Also use call the import subroutine.
    Boris
Re: Difference between 'use' and 'require'
by bobf (Monsignor) on Nov 22, 2004 at 17:38 UTC
Re: Difference between 'use' and 'require'
by bart (Canon) on Nov 23, 2004 at 08:55 UTC