The break statement
Syntax
break
The break
statement is used to exit an enclosing
foreach loop. The break
statement only be used
inside of a foreach loop.
Example
foreach i (Class) {
if (i == 0xabcdef) {
break
}
reply += {
Reply-Message = "Contains %{i}"
}
}