6 lines
172 B
Text
6 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";
|