Skip to content

for

The for loop statement iterates while the condition is true.

Syntax

for (declaration; condition; operation)
{
}
for (var int32 i = 0; i < n; ++i)
{
}