mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
9 lines
121 B
ObjectPascal
9 lines
121 B
ObjectPascal
var
|
|
d : double;
|
|
r : real48 = ($0, $0, $0, $0, $0, $0);
|
|
BEGIN
|
|
d := r;
|
|
if d<>0.0 then
|
|
halt(1);
|
|
END.
|