RosettaCodeData/Task/Jump-anywhere/PowerShell/jump-anywhere-2.psh
2016-12-05 22:15:40 +01:00

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