While

While[cond] ... End

While[cond] ... End executes the script at ... until the condition evaluates to False. If the condition initially evaluates to False, the script is never executed.

Example in
The script at ... is executed 10 times. ii := 0
While[ii << 10]
  ...
  ii:=CalcPlus[ii,1]
End