While

Evaluates a scope as long as another scope is truthy.

Concepts Used

Overview

to can be used to generate ranges:

1 = a
while (a < 5) (
  a + 1 = a
)
# a: 5

Examples

Common Bugs

Further Reading