cafe
cafe copied to clipboard
String declaration doesn't escape characters using back slash.
Input:
var x = "This is a cafe example.\nI am testing \"Strings\".";
cmd.println(x);
Output:
This is a cafe example.
I am testing Strings.
""
are not escaped/trimmed in the second line.