Smart pascal source code
var eric := 'eric';
var éric := 'éric';
// ° this variable おはよ"ざいます uses kanas
var おはよ"ざいます := 'hello';
{ a multiline comment
with some Unicode characters
ÉRIC おはよ"ざいます
and a few Unicode symbol °⊕⊠∰⌦
as you can see }
WriteLn(おはよ"ざいます);
WriteLn(éric);
{<<< RESULT - CONSOLE LOG >>>
-----------------------------
Errors >>>>
Hint: "ÉRIC" does not match case of declaration ("éric") [line: 13, column: 9]
Result >>>>
hello
éric
-----------------------------
{<<<<<<<<< THE END >>>>>>>>>}
var eric = "",
éric = "",
おはよ"ざいます = "";
/* <<< main JS >>> */
eric = "eric";
éric = "éric";
おはよ"ざいます = "hello";
WriteLn(おはよ"ざいます);
WriteLn(éric);