================================================================================
Simple String
================================================================================

"hello there"

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

(source
  (str_lit))

================================================================================
String with Escapes
================================================================================

"first line\nsecond\tline"

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

(source
  (str_lit))

================================================================================
Multiline String
================================================================================

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

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

(source
  (str_lit))
