Rebol 程式設計/break
外觀
BREAK /return value
退出迴圈、while、until、repeat、foreach 等。
BREAK 是一個本機值。
- /return -- 強制迴圈函式返回一個值。
- 值 -- (型別:任何型別)
break: native[
{Breaks out of a loop, while, until, repeat, foreach, etc.}
/return "Forces the loop function to return a value."
value [any-type!]
]