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 (byte 0x08)
\b
0x08
\n will produce a new line (byte 0x0a)
\n
0x0a
\t will produce an horizontal tab (byte 0x09)
\t
0x09
\v will produce a vertical tab (byte 0x0b)
\v
0x0b
Last updated 1 year ago