Unexpected EOF in string constant
-
Hello to all,
unfortunately this does not work under Windows:
const separator = “\”;
I get the following error message:
Interface:! Line 95, column 19: 11:1: error: Unexpected EOF in string constant
Does anyone have an idea how I can assign this character “\” to a string variable under Windows?
Thank you very much
Oli -
@Oli-Ullmann try double backslash as escape character
const separator = "\\";
-
@ustk
Yes, that seems to work. Thank you very much! :-)