A string is a sequence of characters. A string is written
by enclosing the characters with a doublequote ("). Some
special characters must be preceded by a backslash, these
include doublequote and backslash. The technique of marking
special characters are called escaping and backslash it self
is called an escape character.
Examples of literal strings:
"Hello world""This string has a \" in it""This character \\ is a slash"
In Scheme, strings are sequences of characters. Since you can't talk about strings without talking about characters, you should know that mzScheme supports the Basic Latin and Latin-1 Supplement, AKA ISO-8859-1. There's work being done to extend the range of valid characters, but at the moment this is what's available. You can specify a literal character with the sequence #\ followed by the character, i.e.