in reply to Re: Perl2Exe and POD
in thread Perl2Exe and POD

Thanks Coroba. By separate module you mean a separate file (a text file) correct (like the other suggestions on this thread)? I would like to find a solution where I could wrap up the whole thing in a single EXE for mobility, but it doesn't look like that's possible. Instead I think I will end up writing simple print statements for error and usage output. Thanks for the suggestion.

Replies are listed 'Best First'.
Re^3: Perl2Exe and POD
by choroba (Cardinal) on Mar 18, 2011 at 18:45 UTC
    Module is a text file named *.pm (see perlmod). But I guess it gets exe-fied together with your code. Or is it a different exe creator?

      The exe creator I'm working with is Perl2exe, but there's also PAR that was referenced on this thread that I will also investigate. Thanks