Perl: Hello world!
Posted by Joys of Programming on in Perl
Writing a hello world program is as simple as writing a single line. Let’s create the file Hello.pl
print "Hello World!\n";
That’s it. Exit from the editor and run the code
perl Hello.pl
And the output will be
Hello World!
A perl program is as simple as that
Comments: