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

18 lines
175 B
ObjectPascal
Raw Permalink Normal View History

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