========================================================================
With Escapes
========================================================================

"first line\nsecond\tline"
------------------------------------------------------------------------

(source
  (str_lit))

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

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

(source
  (str_lit))

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

"\xAB"

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

(source
  (str_lit))

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

"\u23f1"

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

(source
  (str_lit))

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

"hello there"
------------------------------------------------------------------------

(source
  (str_lit))

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

"\U01F609"

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

(source
  (str_lit))

