cont, continue
cont( ) => no return value
continue(
)
=> no return value
Description
Continues execution from a breakpoint. cont and continue are identical.
These functions work only within the break handler (which defaults to the SKILL debugger).
Arguments
Value Returned
Examples
break( ) ; puts you in the break handler
cont( ) ; exits the break handler
Related Topics
Return to top