Stops the execution of a PlanetPress Talk object when the specified expression is True. This breakpoint is effective only when running in debug mode in the PlanetPress Talk editor.
breakpoint( expression1 )
expression1
Boolean value.
This example sets up a loop, stops the loop on its 5th iteration, and then displays the value.
define(&x,integer,1)for(&x,1,1,10) breakpoint(&x = 5) show(inttostr(&x)) endfor()