igorich1376

flashing_turtle

Dec 4th, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.40 KB | None | 0 0
  1. {$reference SmallBasicLibrary.dll}
  2. uses Microsoft.SmallBasic.Library,System;
  3. type gw = GraphicsWindow;
  4. type t = turtle;
  5. var n := 0;
  6. procedure OnTick();
  7. begin
  8.   if n mod 2 = 0 then t.Hide
  9.     else t.Show;
  10.   n += 1;  
  11. end;
  12. begin
  13.   gw.Width := 640;
  14.   gw.Height := 520;
  15.   // код пишем сюда
  16.   Timer.Interval := 250;
  17.   Timer.Pause;
  18.   Timer.Tick += OnTick;
  19.   Timer.Resume;
  20.  
  21. end.
Advertisement
Add Comment
Please, Sign In to add comment