I am trying to do a for loop that increased not by 1.
i.e.
for i=0.1 to 1 begin
end;
would like to increase I by 0.1.
in other languages I might use STEP after the loop
so it would look like this:
for i=0.1 to 1 step 0.1
any idea how is that possible?
|