To debug a TCL file locally, apply the following steps:
Files->Open file
. To make a test,
use the example located in <RamDebugger directory>/Examples/example1.tcl
Debug->Set breakpoint
or press F9
after
having the cursor in the desired line. Debug->Go
or press F5
. A grey arrow at the left
of the text indicates that the program has stopped in that line. Debug->Next
or press F10
. Edit->Goto line->27
and press Debug->Continue to
set cc $bb--qqto:
set cc $bb--qq2
Debug->Step
or press F11
. Debug->Expressions
and
write: [string length $i]+3
Return
.