var x, y : int
colourback (black)
cls
colour (green)
loop
for a : 0 .. 255
randint (x, 1, 80)
randint (y, 1, 5)
locate (y, x)
put chr (a)
randint (x, 1, 80)
randint (y, 6, 11)
locate (y, x)
put chr (a)
randint (x, 1, 80)
randint (y, 12, 17)
locate (y, x)
put chr (a)
randint (x, 1, 80)
randint (y, 17, 22)
locate (y, x)
put chr (a)
randint (x, 1, 80)
randint (y, 22, 25)
locate (y, x)
put chr (a)
end for
delay (20)
end loop
%you can make like this
%loop
% for a : 0 .. 255
% randint (x, 1, 80)
% randint (y, 1, 5)
% locate (y, x)
% put chr (a)
% randint (x, 1, 80)
% randint (y, 1, 25)
% locate (y, x)
% put chr (a)
% end for
% delay (20)
%end loop
% but it clumps to the left....
|