Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Strings are created by enclosing Unicode characters in double quotes. You can put a double quote inside a string by escaping it with a backslash:

a = "I can put a quote character, \", in my string using a backslash"


Strings can span multiple lines:

a = "how to add a'
' character"

// -> "how to add a '\n' character"


Strings are UTF-8 encoded.

  • No labels