igorich1376

Turtle_break-dancing

Dec 4th, 2024
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.41 KB | None | 0 0
  1. {$reference SmallBasicLibrary.dll}
  2. uses Microsoft.SmallBasic.Library,System;
  3. type gw = GraphicsWindow;
  4. type t = turtle;
  5.  
  6. begin
  7.   gw.Width := 640;
  8.   gw.Height := 520;
  9.   gw.Title := 'Черепаший брейк';
  10.   t.Speed := 6;
  11.   // код пишем сюда
  12.   t.Show;
  13.   t.Turn(-90);
  14.   while true do
  15.     begin
  16.       Sleep(500);
  17.       t.Turn(180);
  18.       Sleep(500);
  19.       t.Turn(-180);
  20.     end;
  21. end.
Advertisement
Add Comment
Please, Sign In to add comment