#!/usr/bin/perl #Program name: example7.pl # special characters print ("\\words\\separated\\by\\slashes\n"); print ("This is a \"quote\"\n"); print ("\uupper case only the first letter\n"); print ("\Uupper case all letters of the string\n"); print ("\lLOWER CASE ONLY THE FIRST LETTER\n"); print ("\LLOWER CASE ALL LETTERS OF THE STRING\n"); print ("Character before colon p\b: is deleted by the backspace key\n");