hello!
i’m programming an app that contains a data structure like this one:
for i=1,10,1 do
print(“i=”…i)
for k=1,5,1 do
print(“k=”…k)
if k==5 then
print (“secondary loop ended”)
end
end
if i==10 then
print(“primary loop ended”)
end
now, what i want is that the program prints all the results with a delay time (for example, every second one of the results is printed)
is there any method, API or command able to do this???
thanks a lot