Half-Day Online Pilot Workshop on AutoDock4 on 9 August 2024, 2:00 pm to 5.30 pm. Click here to register.

Including files or modules - English

2777 visits



Outline:

Including Files or modules in Perl program We can include the Perl modules or files by using the following methods. 1. do: It includes the source code from other files into the current script file. 2. use: It includes Perl module files only. Files get included before the actual execution of the code. 3. require: It includes both Perl programs and modules.