10 lines
172 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
// The following string will error if there is a whitespace after '\'
var str = "Hello \
World";
----