7.67.52015-05-06

Breakpoint (procedure)

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.

Syntax

breakpoint( expression1 )

Argument

expression1

Boolean value.

Code Sample Example

This example sets up a loop, stops the loop on its 5th iteration, and then displays the value.

Example


define(&x,integer,1)for(&x,1,1,10)
	breakpoint(&x = 5)
	show(inttostr(&x))
endfor()