Current News

Moderator: Mmiscool

User avatar
By Mmiscool
#52360 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