Getting Started
Hello World!

 

    
    #!/usr/local/apps/perl/bin/perl
    print "Hello World!\n";
    
    #!... First line should specify interpreter path  

    (Compulsory for Unix, but not necessary for windows).
    ('#' generally denotes a line comment)

    print Function which outputs arguments (notice parens are not "required")
    "" Delimits a string
    \n Newline character
    ; Terminator character for a simple statement