4 lines
202 B
Text
4 lines
202 B
Text
|
|
const s1 := 'quoted "word" in string';
|
||
|
|
const s2 := "quoted ""word"" in string"; // sames as s1, shows the doubling of the delimiter
|
||
|
|
const s2 := 'first line'#13#10'second line'; // CR+LF in the middle
|