After I save my Kodular IDE project, I lost ignoring character escapes.
Example; this is my code for test
variable and I’m trying to print "
(quote char):
String test = "file=\"" + file + "\"";
Adding \
(backslash) before "
(quote) character will ignore character escape expression, by the way, I can print and use "
(quote) in strings.
Like,
Hello “World”!
But,
When I exit from my project and when I open my project, the result is:
String test = "file="" + file + """;
As you can see, my file
variable will behave like a string instead of a variable.
In short - I’m losing my backslashes. So this causing an error, when I try to compile.