formatted-stringπ i
The
formatted-string language is a lang-extension extends racket string to formatted string.
"x = $x, y = $y, z = $z, (+ x y z) = $(+ x y z)"
produces "x = 1, y = 2, z = 3, (+ x y z) = 6"
However, sometimes we would like to write $ in string, in this case, you write \$ to escape from formatted string!