RosettaCodeData/Task/Literals-String/DWScript/literals-string.dw

4 lines
202 B
Plaintext

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