10.1 String

Define: String

A String is a sequence of characters.

Character code

Use the .code property on a constant single-char string in order to compile its ASCII character code:

"#".code // will compile as 35

See the String API for details about its methods.