Escape/Special characters
Escape/Special characters in JM- work just as they do in C++
Here's a list of every escape character in JM-
\\
will produce:\
\"
will produce:"
\'
will produce:'
\?
will produce?
\b
will produce a backspace (byte0x08
)\n
will produce a new line (byte0x0a
)\t
will produce an horizontal tab (byte0x09
)\v
will produce a vertical tab (byte0x0b
)
Last updated