TRUE (-- trueCondition)trueCondition: TRUE condition constant.This builtin has no inputs. It always pushes the known Cond value TRUE.
TRUE is one of the two fixed known Cond constants. The other fixed value is FALSE. The configuration-dependent known Cond value is DEBUG.
TRUE.{} 0 {} [
TRUE [1] [2] uif printStack _:;
0
] "main" exportFunction
1
DEBUG builtin (-- debugCondition) Pushes a known Cond that reports whether debug mode is enabled.FALSE builtin (-- falseCondition) Pushes the false condition value.if builtin (condition trueCallable falseCallable -- branchResult) Calls one of two Blocks; unknown conditions require both branches to be compiled and merged.uif builtin (condition trueCallable falseCallable -- branchResult) Processes one of two Blocks inline, depending on a known Cond value.