Advertisement
Alex_Fomin

Untitled

Jan 24th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.33 KB | None | 0 0
  1. begin
  2.   Randomize;
  3.   System.Console.CursorVisible := false;
  4.   System.Console.ForeGroundColor := System.ConsoleColor.White;
  5.   var num := 0;
  6.   while num < 25 do
  7.   begin
  8.     System.Console.SetCursorPosition(Random(80), num);Write('*');
  9.     Sleep(750);
  10.     System.Console.Clear;
  11.     num += 1;
  12.   end;
  13.   System.Console.ReadKey;
  14. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement