Special characters and escaping them

There are a few defined special characters as outlined in the table below:

Character Meaning
\ (Backslash) Escapes the special meaning of characters. To include a litteral backslash, simply escape it: "\\". Note that to include X number of litteral backslashes, write X+1 backslashes. Ie. "\\\"" will be parsed as litteral "\\".
# (Pound) Treats the rest of the line as a comment
, (Comma) Separates parameters. Escape it with a backslash to include a litteral comma.
¤XXX Where "XXX" is an exactly 3 digit number it will be parsed as a character with ASCII code XXX