WolframLang: String
Quote String
String is quoted by double straight quote.
"this is a string"
string can be multi-line, can include any unicode characters:
x = "i ♥ cats and dogs"
String Escapes
\n
- newline char in string.
\t
- tab char in string.
\"
- double quote in string.
example:
"this is\na string" "Said \"Yes\""