thing = "The quick brown fox jumped over the lazy dog.";
another_thing = "The quick brown fox"
" jumped over the lazy dog.";
a_third_thing = "The quick" /* comment */ " brown fox " // another comment
"jumped over the lazy dog.";
First text thing validates fine.
Second one another_thing reports " jumped over the lazy dog." as invalid with error message:
Expected a terminator libconfig(768)
Third text reports the same error for " brown fox ".
The documention states that these should all be valid.
How can I help to make the syntax checking allow multiline versions.?
First text
thingvalidates fine.Second one
another_thingreports" jumped over the lazy dog."as invalid with error message:Third text reports the same error for
" brown fox ".The documention states that these should all be valid.
How can I help to make the syntax checking allow multiline versions.?