String
Gleam's has UTF-8 binary strings, written as text surrounded by double quotes.
"Hello, Gleam!"
Strings can span multiple lines.
"Hello
Gleam!"
Special characters such as "
need to be escaped with a \
character.
"Here is a double quote -> \" <-"