View Single Post
  #2  
Old 07-30-2007, 06:39 AM
kingmaker kingmaker is offline
D-Web Genius
 
Join Date: Jun 2007
Posts: 880
kingmaker is on a distinguished road
Send a message via MSN to kingmaker
Default Re: Explain the difference between use and require.

Use :

1. The method is used only for the modules(only to include .pm type file)

2. The included objects are varified at the time of compilation.

3. No Need to give file extension.

Require:

1. The method is used for both libraries and modules.

2. The included objects are varified at the run time.

3. Need to give file Extension.
Reply With Quote