RosettaCodeData/Task/Literals-String/Elena/literals-string.elena

6 lines
172 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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";