mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:24:24 +02:00
14 lines
157 B
ObjectPascal
14 lines
157 B
ObjectPascal
{$r-}
|
|
var
|
|
l : longint;
|
|
begin
|
|
l:=$ff;
|
|
l:=RorByte(l);
|
|
if l<>$ff then
|
|
halt(1);
|
|
l:=RolByte(l);
|
|
if l<>$ff then
|
|
halt(1);
|
|
writeln('ok');
|
|
end.
|