Hi, Petar Shangov wrote:
I have a script that uses only pure-perl non-core modules, and I would like to pack the script, together with all modules it uses, into a single .pl file. However, I want the modules to be retained in their source format, rather than be compiled to binary. Is this possible with PAR?
No. This isn't generally possible at all. Some modules expect to be in their very own file scope. In fact, it's not even all that easy to do for something as simple as PAR::Dist.
Cheers, Steffen