Unicode variable names: Difference between revisions

Content added Content deleted
m (→‎{{header|Delphi}}: whitespace)
Line 42: Line 42:
=={{header|Delphi}}==
=={{header|Delphi}}==
For more information about naming identifiers (including variables) visit: [http://docwiki.embarcadero.com/RADStudio/en/Identifiers Identifiers in Delphi]
For more information about naming identifiers (including variables) visit: [http://docwiki.embarcadero.com/RADStudio/en/Identifiers Identifiers in Delphi]
<lang Delphi>
<lang Delphi>(* Compiled with Delphi XE *)
(* Compiled with Delphi XE *)
program UnicodeVariableName;
program UnicodeVariableName;


Line 59: Line 58:
Writeln(Δ);
Writeln(Δ);
Readln;
Readln;
end.
end.</lang>
</lang>


=={{header|Go}}==
=={{header|Go}}==