in reply to How to include a lot of files in a module?

personally, i like my $string = do { local $/; <FILEHANDLE> }; for including files. then, you can just print $string to the screen, or whatever you need to do :-)
meh.