[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] perl include stuff ( off topic)
- Subject: [ale] perl include stuff ( off topic)
- From: fletch at phydeaux.org (Mike Fletcher)
- Date: 07 Jan 1999 13:42:16 -0500
>>>>> "David" == David Hamm <dhamm at itserve.com> writes:
David> How do I include some functions in perl. In C its easy I
David> just #include "mycrappycode.c" and later I write a .h file
David> and create the library. How can I do this is perl?
man perlmod
(or if the perl manual pages aren't in your path try:
perldoc perlmod)
Or look at man perlfunc and look for either `reqire' or `do'
as has been previously mentioned.