Next: , Up: Strings   [Contents][Index]


10.3.1 String Literals

NULL-terminated sequences of ASCII codes can be denoted using the following syntax:

"foo"

Poke string values are very similar to C strings. They comprise a sequence of 8-bit character codes, terminated by the value 0UB.

The following escape sequences are supported inside string literals:

\n

Denotes a new line character.

\t

Denotes an horizontal tab.

\\

Denotes a backlash \ character.

\"

Denotes a double-quote " character.