String Values¶
A string is simply an ordered list of Unicode characters.
Note
Strings are immutable entities. No operation involving a string can, by any means, “mutate” it.
A string is represented by a sequence of characters surrounded by single quotes '
. For instance, the following string:
'Hello world!'
would be translated to:
Hello wrold!
when evaluated.
Note
Strings are the most important and fundamental construct of Exo: they are literally used to represent the raw output of an application.
Contents: