9 lines
261 B
Text
9 lines
261 B
Text
:myLabel while (<condition 1>)
|
|
{
|
|
for ($item in $items)
|
|
{
|
|
if (<condition 2>) { break myLabel }
|
|
$item = $x # A statement inside the For-loop
|
|
}
|
|
}
|
|
$a = $c # A statement after the labeled While-loop
|