Literals/String: Difference between revisions

Content added Content deleted
m (→‎{{header|IDL}}: removed <nowiki> tags inside of <lang> block)
Line 438:
 
=={{header|Elena}}==
ELENA 34.2x :
<lang elena>
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 "$13$10"two lines".
two lines";
</lang>