|
'H' /* a single character as a literal. */
|
|
'this is a string'
|
|
'' /* an empty string literal. */
|
|
'John''s cat' /* a literal containing an embedded apostrophe. */
|
|
/* stored are <<John's cat>> */
|
|
'101100'b /* a bit string, stored as one bit per digit. */
|