17 lines
175 B
ObjectPascal
17 lines
175 B
ObjectPascal
(* Compiled with Delphi XE *)
|
|
program UnicodeVariableName;
|
|
|
|
{$APPTYPE CONSOLE}
|
|
|
|
uses
|
|
SysUtils;
|
|
|
|
var
|
|
Δ: Integer;
|
|
|
|
begin
|
|
Δ:= 1;
|
|
Inc(Δ);
|
|
Writeln(Δ);
|
|
Readln;
|
|
end.
|