Rebol 编程/either
外观
< Rebol 编程
EITHER condition true-block false-block
如果条件为真,则执行第一个块,否则执行第二个块。
EITHER 是一个原生值。
- 条件 -- (类型: 任何)
- 真块 -- (类型: 块)
- 假块 -- (类型: 块)
either: native[ {If condition is TRUE, evaluates the first block, else evaluates the second.} condition true-block [block!] false-block [block!] ]