#!/usr/bin/perl -w
use strict;

# ------------------------------------------------------------------ 
# File name: hello_perl.pl
#
# A line starting with # character is a comment and not interpreted 
# by Perl. The first line of code containing the location of perl is
# an exception to this rule. Use comments liberally in your codes. 
# Our program will simply print: Hello Perl! 
#
# Version: 2.1
# Authors: H. Kocak and B. Koc, University of Miami
# References:
# http://www.perl.org
# ------------------------------------------------------------------ 

print "Hello Perl! \n";
