RosettaCodeData/Task/Literals-String/DWScript/literals-string.dw
2013-04-11 11:14:19 -07: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