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