================= module Control ================================= Execution control. ------------------------------------------------------------------ Author: Rudla Kudla Language: English Version: 1.0 ================================================================== ==== syntax if {c:bool} then {t:func} else {f:func} -> func ====== Conditional execution. If c is true, result of t is returned, otherwise f is be returned. ------------------------------------------------------------------ priority:4 ================================================================== sys_func#33 =================== syntax ( {x} ) =============================== Braces. ================================================================== x ================================================================== {a} {b} ------------------------------------------------------------------ Sequence of functions. The results of the functions are joined to table of any. ------------------------------------------------------------------ priority:2 ================================================================== sys_func#34