On Wednesday, June 12, 2002, at 11:13 , Alaric Joseph Hammell wrote:
>
> I am very new to perl and wondering if there is something in Perl similar
> to header files in C? Please direct me.

I'm not sure I get your question here - since a
header file is merely a way of defining

        a) constants
        b) the function signatures for code found elsewhere

the former you can do in terms of things like

        use constant

hence perldoc constant

the latter is where you are starting to move into the
sets of questions about

        so how do I make perl modules so that I
        can 'cache' my functions elsewhere


hence you want something on the order of

        a) perldoc perlmod
        b) perldoc perlsub
        c) perlcod perlmodlib
        d) perldoc perldsc

and of course you wanted to start with say

        perldoc perl

to get the first get go in all of this.

Or to have a little fun, you can visit say

        http://www.wetware.com/drieux/CS/lang/Perl/PM/

since the moment that making perl modules makes rational
sense to you - well, it's clearly time to seek therapy
because you are clearly in denial about your software addiction.

ciao
drieux

---


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to