previous  next
3.3.1. Introduction to Strings
A string constant consists of a sequence of characters between quotes
(') or between double quotes (").

Example

'This is a string.';
This is a string.
-------------------------------
"So is this.";
So is this.
-------------------------------

One may not, however, start a string with a single quote and end with
a double quote, or vice versa.
See also: