Posted: 29th Oct 2003 0:19
If you put an exclamation mark in a "rem" comment such as

rem Oooooh, look at me!

then the program (when ran in Debug Mode (DBPro)) will stop allow you to step through the program; as if you had run it from Step through from the beggining.
Now I'll never have to quickly click between windows for skipping through menu's etc.. Hurrah!!

(Sorry, if you knew this or I've put it in the wrong place. Just thought it was an interesting discovery)
Posted: 29th Oct 2003 23:06
The "!" character is used by the debugger to specify a breakpoint.
You can put it in code as well.

+ Code Snippet
make object cube 1,1

do
!rotate object 1,0,object angle y(1)+1,object angle z(1)+1
loop


You can also do it in the ide with ctrl+shift+f2 or right click > toggle breakpoint.

When you run it in step through mode the ide prefixes every line with a "!".

Not really much use as the debbugger crashes too much to make it useable. It crashed in that bit of code.