REBOL Programming/unless

< REBOL Programming

USAGE:

UNLESS condition block 

DESCRIPTION:

Evaluates the block if condition is not TRUE.

UNLESS is a native value.

ARGUMENTS

SOURCE CODE

unless: native[
    "Evaluates the block if condition is not TRUE." 
    condition 
    block [block!]
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.