# File: hello.pl # Title: Hello World in Perl. WINDOWS # Author: Mihaela Malita # Have a folder where you put your Perl files in C: # C:\myPerl\hello.pl # Run Command prompt (from All Programs/Accessories) # Go in myPerl folder: # C:\WINDOWS>cd ..\myPerl # Be sure you have in the autoexec.bat file the following: # SET PATH=C:\Perl\bin;%PATH% # If not, go in NotePad and write it in the autoexec.bat file # Run your program. # # >perl hello.pl # Hello World in Perl # OR # >perl -w hello.pl # better: You get WARNINGS! print "Hello World in Perl"; exit;