#Hello World in Perl

<div class="text-success lead">
Perl is a high-level, general-purpose, interpreted, dynamic programming language. Perl was originally developed 
by Larry Wall, a linguist working as a systems administrator for NASA, in 1987, as a general-purpose Unix scripting 
language to make report processing easier
</div>

<img src="./perl.jpg"/>

PERL is already installed by default in the [Arietta](/arietta) microSD.

##Hello world example

This is the "Hello world !" source code example.

<pre class="prettyprint">
print "Hello world !\n";
</pre>

Save it with in hello.pl then run it typing:

<pre class="prettyprint">
~# perl hello.pl
Hello world !
</pre>

##Related links

<ul>
<li><a href="http://www.perl.org/">Perl official website</a></li>
<li><a href="http://www.perl.org/docs.html">Documentation</a></li>
<li><a href="http://en.wikipedia.org/wiki/Perl">Wikipedia definition of Perl</a></li>
<li><a href="http://wiht.link/perl-resources">Perl Guide and Resources</a></li> 
</ul>

