This seems like a really simple question but somehow my Google-Fu failed me.
What\'s the syntax for including functions from other files in Perl? I\'m looking for s
You really should look into perl modules however, for a quick hack you could always run "perl -P" which runs your perl script through the C pre-processor. That means you can do #include and friends....
Only a quick hack though, beware ;-)