##
that's it \ escapes the delimiter (')
that's it\! \ wasn't followed by the delimiter (') or \
that's it\! \ escapes \
####
print "\"that's it!\"\n";
print "\"that's it\!\"\n";
print "\"that's it\\!\"\n";
####
"that's it!" \ escapes "
"that's it!" \ escapes !
"that's it\!" \ escapes \