39

Getting Started
Hello World!

    
    #!/usr/local/apps/perl/bin/perl
    print "Hello World!\n";
    
    #!... First line should specify interpreter path
    '#' 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