Closed djfritz closed 4 years ago
@traetox
The raw string support simply rewrites any backtick wrapped rvalue string as a double quoted string with padded escapes. That means things like:
`foo\dbar \t\s`
Get rewritten and handed back as:
"foo\\dbar \\t\\s"
@traetox
The raw string support simply rewrites any backtick wrapped rvalue string as a double quoted string with padded escapes. That means things like:
Get rewritten and handed back as: