B0 = "\" Bug

hippy

Technical Support
Staff member
This is the C-style escape sequence which I believe exists for historical reasons -

b0 = "\n"

sets b0 to $0A (newline).

To use "\" you need to specify b0 = $5C or via a symbol definition.
 
Top