sString literal

String literal includes raw string literal and interpreted string literal. 
* In raw string literal, backslashes have no special meaning. If you need to include backslashes, double quotes or newlines in your string, use a raw string literal.
* Interpreted string literals are character sequences between double quotes, as in "bar". Within the quotes, any character may appear with the exception of newline and unescaped double quotes.