mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-02 15:00:54 +01: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.
|