in reply to Include statement in Perl?

Does Perl have an include statement, or something similar to C's "#include"?

The statement you're looking for is require. At a command prompt, typing perldoc -f require will get you more info. Also check out the use statement, which refines require in interesting and useful ways.

Replies are listed 'Best First'.
Re: Re: Include statement in Perl?
by Ashte (Initiate) on Dec 11, 2001 at 02:36 UTC
    Thanks, I'll try those.