basilisp icon indicating copy to clipboard operation
basilisp copied to clipboard

Double quotes in strings are not escaped in REPL output

Open ikappaki opened this issue 11 months ago • 0 comments

To reproduce

  1. Open up a REPL, and enter a string with double quotes, they are not escaped in the output (messing up with syntax highlighting)
basilisp.user=> "\"abc\""
""abc""

same thing happens in nREPL

contrast with Clojure

user> "\"abc\""
"\"abc\""

ikappaki avatar Mar 09 '24 16:03 ikappaki