← Back to AILP Home

for Loop

C-Style For

for (int32:i = 0; i < 10; i++) {
    println(`&{i}`);
}

Standard three-part syntax: init; condition; update.

Notes

Related