Arc Forumnew | comments | leaders | submitlogin
Does Arc Support Escape Sequences?
2 points by jwk 3949 days ago | 2 comments
I would like to put quotes around something. Is the way to do this \"something\"?


4 points by akkartik 3949 days ago | link

Yes that seems right.

  arc> (prn "abc\"")
  abc"

-----

3 points by Pauan 3949 days ago | link

All of the string syntax that Arc currently uses:

http://docs.racket-lang.org/reference/reader.html?q=string%2...

Though this may change in the future, if pg switches away from Racket's reader. So I'd recommend not using any of the funky escapes.

-----