Closed etcimon closed 9 years ago
The following edge case causes the line at writeln to appear as orange:
writeln
void main() { if (d == '\'' || c == '"') writeln("hello"); // this entire line is orange
However, using this will repair it:
void main() { if (d == '\'' || c == '"' /* " */) writeln("hello"); // this is not orange.
The following edge case causes the line at
writeln
to appear as orange:However, using this will repair it: