mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 17:49:33 +02:00
10 lines
111 B
ObjectPascal
10 lines
111 B
ObjectPascal
var
|
|
A: Double = 0.0001;
|
|
B: Double = 0;
|
|
begin
|
|
if B >= 0 then
|
|
A := B;
|
|
if A<>0 then
|
|
halt(1);
|
|
end.
|