mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 03:28:40 +02:00
10 lines
105 B
ObjectPascal
10 lines
105 B
ObjectPascal
var
|
|
d1,d2,d3 : extended;
|
|
err: longint;
|
|
begin
|
|
d1:=105;
|
|
d2:=1.05e2;
|
|
if (d1<>d2) then
|
|
halt(1);
|
|
end.
|