Synopsis:
SET assigns a value to a channel variableDescription:
${SET(<varname>=[<value>])}Notes
- Might be useful to assign the value of a complex expression to a variable, while still using that value to evaluate still another expression.
Return value
Returns the value setExample
Set(one=${SET(two=${SET(three=${SET(four=0)})})})Sets variables ${one}, ${two}, ${three}, and ${four} to 0.

Comments