continue

Help Contents Control Structures continue
pause co

continue value
co value
(continue)
(co)


command. Ends the current interactive pause, returning to the context of the pause invocation that began it. If CONTINUE is given an input, that value is used as the output from the PAUSE. If not, the PAUSE does not output.

Exceptionally, the CONTINUE command can be used without its default input and without parentheses provided that nothing follows it on the instruction line.

Examples:

to t
	pause
	pr 5
end
;t defined
t
continue ; Pausing t in line 2...
;5
to tt
	pr pause
end
;tt defined
tt
continue 1234; Pausing tt in line 1...
;1234

See also:

Examples:

References:

pause co