========================================================================
With Escape
========================================================================

@"ant\fbee\rcougar"

------------------------------------------------------------------------

(source
  (buf_lit))

========================================================================
With Utf8 Six Hex Digits Escape
========================================================================

@"\U01f6aa"

------------------------------------------------------------------------

(source
  (buf_lit))

========================================================================
With Hex Escape
========================================================================

@"\x0f"

------------------------------------------------------------------------

(source
  (buf_lit))

========================================================================
Simple
========================================================================

@"good bye"

------------------------------------------------------------------------

(source
  (buf_lit))

========================================================================
With Utf8 Four Hex Digits Escape
========================================================================

@"\u89ee"

------------------------------------------------------------------------

(source
  (buf_lit))

========================================================================
Multiline
========================================================================

@"this is the first line
and what is this one?"

------------------------------------------------------------------------

(source
  (buf_lit))

