--- Olympio Raymond <[EMAIL PROTECTED]> wrote: > Hi everybody, > I'm a new in perl programming so i hope you won't find my question > too stupid. I have to run a some user-defined functions, but i don't > want to include them in only one script. So, is it possible to run a > perl script into an other one ? > Thanks
That's an *EXCELLENT* beginner's question! The short answer is use(). The slightly longer and more helpful answer is that you need to put them into a module. You could put them into a .pl libfile and require() it, but modules are usually the better way to go. c.f.: perldoc perlmod perldoc -f use perldoc -f package __________________________________________________ Do you Yahoo!? Yahoo! Web Hosting - Let the expert host your site http://webhosting.yahoo.com -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]