I am new to perl scripting. I have a Perl program I would like to run in Windows XP.
I heard that ActivePerl tool is used to run Perl scrips in Windows.
I tried to install ActivePerl but the installation failed.
Please help me to install and to run some sample application.
These days I would suggest Strawberry Perl instead of ActivePerl. I would also suggest installing Padre to allow you to easily edit scripts. There is a Padre msi installer that also includes Strawberry Perl, so you can install both at the same time.
Once you have it installed, you can open Padre and type the following into it:
Then hit
F5or go to the Run menu and choose “Run Script”. You will be prompted to save the file; choose a name like hello_world.pl. When you are done saving Padre will use Strawberry Perl to execute your program and will display its output in a sub-window named Output.You are now ready to start your adventure with Perl 5. For the next steps, I would suggest reading Learning Perl and asking questions here and on the Perl Beginners mailing list.