ericlass/erc

Strings

Opened this issue · 0 comments

Of course we need strings. They come in two flavors:

  1. ISO-8859-1 (one byte per character, null-terminated)
  2. UTF-16 (only the BPM, 0x0000 - 0xFFFF)

Enclosed in ". Default for literals is ISO-8859-1.
"Hello World!"

To make it UTF-16 add a leading "u":
u"Hellö Wörld!"