$while

Loops over a block of statements while a boolean expression remains true.
Syntax
    $while{boolean_expression}{statements_block}
DocumentationLoops over a block of statements while a boolean expression remains true:

    Parameters:
      boolean_expression, the boolean expression.
      statement_block, the statements to be executed as long the expression remains true.
Examples
    $while{$equals{$get{a}}{$get{b}}}
      {
      $inc{$get{c}}
      }
    Result:
    increases variable "c" as long as variables "a" and "b" are
    equal
GroupControl_Flow
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_EXPERT
Minimum parameters2
Maximum parameters 3