RosettaCodeData/Task/Jump-anywhere/PowerShell/jump-anywhere-2.psh
2023-07-01 13:44:08 -04: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