Synopsis:
continue [location]
Leave the debugger loop and continue execution. Subsequent entry to the debugger however may occur via breakpoints or explicit calls, or exceptions.
If a parameter is given, a temporary breakpoint is set at that position before continuing.
Examples:
continue
continue 10    # continue to line 10
continue gcd   # continue to first instruction of method gcdSee also:
step, next, finish, and help syntax location