RosettaCodeData/Task/Unicode-variable-names/Delphi/unicode-variable-names.delphi

18 lines
175 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
(* Compiled with Delphi XE *)
program UnicodeVariableName;
{$APPTYPE CONSOLE}
uses
SysUtils;
var
Δ: Integer;
begin
Δ:= 1;
Inc(Δ);
Writeln(Δ);
Readln;
end.