This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
2024-03-10 20:32:51 +03:00

18 lines
416 B
ObjectPascal

// Демонстрация использования случайных чисел для Робота. Случайное блуждание
uses Robot;
begin
Field(50,40);
while True do
begin
var r := Random(4);
case r of
0: if FreeFromUp then Up;
1: if FreeFromDown then Down;
2: if FreeFromLeft then Left;
3: if FreeFromRight then Right;
end;
Paint;
end;
end.