The loop keyword offers a mechanism to repeat a series of Envision operations. This keyword takes a single argument which must be an integer literal between 2 and 10 (inclusive).
Example:
a = 1
loop 3
b = a + 1
a = 2 * b
show summary "" with a, b // 22, 11