Backslash problem
Hi there. I am programming J# in my high school computer class and I ran into a little problem. I am making a consol application and it is displaying text but the first displayed character after my quotation mark needs to be a backslash. Whenever I go to debug this program it tells me that the backslash is an invalid escape sequence. If anyone could tell me how to fix this so the backslash is not recognized as a escape key but as regular text this would be great. Thank you very much in advance

Backslash problem
tom_7
Perhaps you need to do \\
in languages like C# and J# the \ is used to "escape" a character. For example if you wnated a carriage return yuou would put "\r\n";
Well obviously you have to escape the \ then if you want it to actually display so just put \\
Hope this helps.