Strings
String literals are specified by a sequence of characters between ' (single quote) characters.
To use quotation marks within a string literal, use the “ character.
'Welcome, visitors.'
'I said, "hello"'
'Numbers like 7 are legal in string literals'
'hello
'I said, 'hello''
"hello"
(incorrect delimiters)