mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00
16 lines
196 B
ObjectPascal
16 lines
196 B
ObjectPascal
program tw31521;
|
|
|
|
{$mode delphi}
|
|
|
|
uses SysUtils;
|
|
|
|
var
|
|
X: Int64;
|
|
begin
|
|
if X.MaxValue <> High(X) then
|
|
Halt(1);
|
|
{Writeln(X.MaxValue.ToString);
|
|
Writeln(IntToStr(High(X)));
|
|
Readln;}
|
|
end.
|