RosettaCodeData/Task/Literals-String/Elena/literals-string.elena
2019-09-12 10:33:56 -07:00

5 lines
172 B
Text

var c := $65; // character
var s := "some text"; // UTF-8 literal
var w := "some wide text"w; // UTF-16 literal
var s2 := "text with ""quotes"" and
two lines";