mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 17:28:05 +02:00
11 lines
122 B
ObjectPascal
11 lines
122 B
ObjectPascal
{$mode objfpc}{$H+}
|
|
|
|
var
|
|
x, y: integer;
|
|
begin
|
|
x:=1;
|
|
y := Round(x);
|
|
if y<>1 then
|
|
halt(1);
|
|
writeln('ok');
|
|
end. |