The at-exp racket includes curly braces
Use @S|{...}|
for this: since the covering part }|
, plain }
won't be special. Also, remember to use |@
instead @
for nested forms. And if you need a different quote as you want to use }|
too, you can add more things in between, as in @S|==={...}===|
. For more details see page (see |{
s and see section 2.4.1 ).
What you found: They are not the same. What you are doing is there is a nested string "{"
that you can use for each unbalanced character. But this is much less convenient than the alternative quote syntax above.
source to share