String literals

In Parser, we can use any characters. The following characters have special meaning:

^   $   ;   @
(   )
[   ]
{   }
"   :   #

To cancel special meaning of these characters you must precede them with character
^. For example, to get $ in the output, you will need to use ^$ in the code.

Besides, you can use character codes:

^#20 - equals to space character
^#XX - XX hex code of the character


Copyright © 1997–2021 Art. Lebedev Studio | http://www.artlebedev.com Last updated: 23.07.2008