Posts

Showing posts with the label Perl

Installing PERL in Windows / Beginner For Perl

Image
For installing the Perl you need to download Perl from their website which is about 69 MB. Step I: Download Perl from perl.org Step II : Now create a program with extension in .pl with the help of notepad.An example code is given below #!/usr/local/bin/perl      print "Hello Perl \n"; Step III: Now from start menu search for Perl command line and open it.Then get to the location where the program file exist. Now:                                                           perl filename.pl                                                There.. u get the output in Perl.....