while (condition) whilebody;
Will loop whilst the condition holds.
var a:=10; while (a > 0) { a:=a - 1; };
Will loop, each time decreasing the value of variable a by 1 until the value is too small (0)