#### Program: # The Personal Program $name = "George"; print "$name - Why are you insulting me by your presence?\n"; __END__ #### Sample Output: George - Why are you insulting me by your presence? #### Notes on Code Fragments: $name = "..." # sets the variable $name to the value ... print "$name -..." # prints the value of name followed by -... ############################# that's all folks #################################