For Loop

The for loop is used to repeat a block of code a specific number of times.

This construct requires the Hyperbee.XS.Extensions package.

Usage

for (var i = 0; i < 42; i++) {
    print(i);
}