< Rebol Programming

USAGE:

BREAK /return value 

DESCRIPTION:

Breaks out of a loop, while, until, repeat, foreach, etc.

BREAK is a native value.

REFINEMENTS

  • /return -- Forces the loop function to return a value.
    • value -- (Type: any-type)

SOURCE CODE

break: native[
    {Breaks out of a loop, while, until, repeat, foreach, etc.} 
    /return "Forces the loop function to return a value." 
    value [any-type!]
]

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.