Documentation
¶
Overview ¶
Package continuecmd implements the continue builtin command.
continue — resume the next iteration of a for, while, or until loop
Usage: continue [N]
Resume the next iteration of the innermost enclosing loop. If N is specified, resume the Nth enclosing loop.
Exit codes:
0 Iteration resumed successfully. 1 Not inside a loop, or invalid argument.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Cmd = builtins.Command{ Name: "continue", Description: "continue a loop iteration", MakeFlags: builtins.NoFlags(run), }
Cmd is the continue builtin command descriptor.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.