2020-06-30 17:16:12 +02:00

10 lines
172 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
----
// The following string will error if there is a whitespace after '\'
var str = "Hello \
World";
----