#!/usr/bin/perl
#The line at the top is the magic line which tells the shell what kind of code this is

use strict; #ALWAYS include these two lines in your perl code!
use warnings;

print "Hello world\n";  #Note the inclusion of the newline
