|
|
> #local i=0;
> #while (i<1)
> #debug concat(str(i,0,2),"\n")
> #local i=i+0.1;
> #end
Try
#local i = 0;
#while (i < 10)
#debug concat(str(i/10, 0, 2), "\n")
#local i = i + 1;
#end
Since there is no round off error with adding integers.
Post a reply to this message
|
|