RosettaCodeData/Task/Literals-String/DWScript/literals-string.dw
2023-07-01 13:44:08 -04:00

3 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