You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
angerangel edited this page Mar 15, 2013
·
1 revision
USAGE
EITHER condition true-block false-block
DESCRIPTION
If condition is TRUE, evaluates the first block, else evaluates the second.
EITHER is a native value.
ARGUMENTS
condition
true-block (block!)
false-block (block!)
#SOURCE
either: make native! [ [
{If condition is TRUE, evaluates the first block, else evaluates the second.}
condition
true-block [block!]
false-block [block!]
] ]