• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Perl Question

S0Y73NTGR33N

Senior member
So I'm just starting to learn Perl.

Can you compile it into executables in windows?

What I want to do is use the things I am writing in Perl on other computers, can you do this without installing Perl on that computer?

I know how to convert it to a batch file, is that the only thing you can do?

-green
 
PerlAPP can do this. It's included in the PDK (Perl Dev Kit) for the ActiveState distribution. It's not free though.

Also, there's Perl2Exe Again, not free
 
Ok what I am trying to do is run my perl program from a CD on computers that won't have perl installed... is the only way to do this to make an executable.. ?

-green
 
Originally posted by: S0Y73NTGR33N
Ok what I am trying to do is run my perl program from a CD on computers that won't have perl installed... is the only way to do this to make an executable.. ?

-green

you could put a perl interpreter on the CD.
 
yeah that's what I did and just made a batch file like

%Perl\bin\perl u.pl

u.pl is the program I'm running..

it works great.

-green
 
Back
Top