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 (byte 0x08)

  • \n will produce a new line (byte 0x0a)

  • \t will produce an horizontal tab (byte 0x09)

  • \v will produce a vertical tab (byte 0x0b)

Last updated