Evaluate expression/s some number of times

do[count;e1;e2;e3;…;en]

Control construct. Where

the expressions e1 to en are evaluated, in order, count times.

The result of do is always the generic null.

Continued fraction for \(\pi\), for 7 steps:

q)r:()
q)t:2*asin 1
q)do[7;r,:q:floor t;t:reciprocal t-q]
q)r
3 7 15 1 292 1 1