Rebol Programming/else
USAGE:
editEITHER condition true-block false-block
DESCRIPTION:
editIf condition is TRUE, evaluates the first block, else evaluates the second.
EITHER is a native value.
ARGUMENTS
edit- condition -- (Type: any)
- true-block -- (Type: block)
- false-block -- (Type: block)
SOURCE CODE
editeither: native[ {If condition is TRUE, evaluates the first block, else evaluates the second.} condition true-block [block!] false-block [block!] ]