#!/usr/bin/perl print "content-type:text/html\n\n"; #specifies the response header for the Perl script print "Hello World"; #Displays Hello World on the screen
Output: ------- Hello World
This is an earnest effort to teach the basics of PERL scripting to the people who are interested in learning the same and want to know the importance of the language.
#!/usr/bin/perl print "content-type:text/html\n\n"; #specifies the response header for the Perl script print "Hello World"; #Displays Hello World on the screen
Output: ------- Hello World