Table of Contents

concepts-control-flow

If / Then

  • If(conditions).Then(actions).ElseIf(conditions).Then(actions).Else(actions)

If / ElseIf / Else

  • If(conditions).Then(actions).ElseIf(conditions).Then(actions).Else(actions)

While

  • While(conditions).Do(actions)

For

  • For(count).Do(actions)

For With Step

  • For(count, step).Do(actions)

Logical Operators

  • Logical operators: OR(conditions), AND(conditions), NOT(conditions)