#### Program: # The Hello Cruel World Program print "Hello Cruel World!\n"; __END__ #### Output: Hello Cruel World #### Notes on Code Fragments: # # indicates a comment print "..."; # causes ... to be displayed ; # indicates the end of the statement \n # causes a new line __END__ # indicates the end of the program # what follows will not be treated as part of the program # (so it can be left out if nothing follows) ############################# that's all folks #################################