Help for this page

Select Code to Download


  1. or download this
    print 'that\'s it',    "\n";
    print 'that\'s it\!',  "\n";
    print 'that\'s it\\!', "\n";
    
  2. or download this
    that's it         \ escapes the delimiter (')
    that's it\!       \ wasn't followed by the delimiter (') or \
    that's it\!       \ escapes \
    
  3. or download this
    print "\"that's it!\"\n";
    print "\"that's it\!\"\n";
    print "\"that's it\\!\"\n";
    
  4. or download this
    "that's it!"      \ escapes "
    "that's it!"      \ escapes !
    "that's it\!"     \ escapes \