-->
Page 1 of 1

Fix for post value of for next loop.Added debugbreak command

PostPosted: Sun Aug 07, 2016 12:01 am
by Mmiscool
Added new command debugbreak.

This allows you to set break points in your program for the debugger. Will be ignored if the debugger mode is not activated.

Small fix for for next loops. The value of x would be incremented when the loop would exit resulting in 11 in stead of 10 in the folowing example. This has been corrected. For next loops variables will now end with thre exit value not being incremented.

Code: Select allfor x = 1 to 10
next x
print x

Re: Fix for post value of for next loop.Added debugbreak com

PostPosted: Sun Aug 07, 2016 12:39 am
by Oldbod
I'm beginning to feel guilty now.... it won't stop me, you understand, but just so you know....

Re: Fix for post value of for next loop.Added debugbreak com

PostPosted: Sun Aug 07, 2016 1:21 am
by Mmiscool
Guilty about what?