#!/usr/bin/perl -w
# Comment lines begin with a "#"

# Actual code to print to screen
print "Hello World!\n";

# Exit the program
exit;
