Rebol Programming/any

USAGE:Edit

ANY block 

DESCRIPTION:Edit

Shortcut OR. Evaluates and returns the first value that is not FALSE or NONE.

ANY is a native value.

ARGUMENTSEdit

  • block -- Block of expressions (Type: block)

SOURCE CODEEdit

any: native[
    {Shortcut OR. Evaluates and returns the first value that is not FALSE or NONE.} 
    block [block!] "Block of expressions"
]