Hello and welcome to the monastery, uva!
Perl itself comes with extensive documentation, but I think you are better helped by learning Perl through an introductory book like merlyn's Learning Perl or Programming Perl (the "Camel Book"). Especially if you already know another programming language (for example C or C++), that book should help you.
| [reply] |
thanx for the reply Corion....
i read "the subroutines are written and store in the file with extension .pm and we can use that subroutine in someother file using -use module;- i tried to implement it is giving error as -cannot locate module in @INC- i also tried using push(@INC,"d:\\module.pm") but still it is giving error,,,,, thats why i asked one code..."
| [reply] |
use lib 'D:/uva/code/';
use UvaModule;
Read the lib documentation. | [reply] [d/l] [select] |