Represents UTF-8 encoded text.
obj string = "This is a string!";
obj emoji = "⚠️🤔🏃♂️➡️🎯"; # utf-8 encoded, meaning we can add emojis and any supported chars!
# strings can also be wrapped over multiple lines
obj multiline = "
This
is
multiple
lines
of
text
";