For

From Mesham
Revision as of 18:10, 13 January 2013 by Polas (talk | contribs)
Jump to navigationJump to search

Syntax

for i from a to b
{
forbody
{

Semantics

The for loop can be thought of as syntactic sugar for a while loop, incrementing the variable after each pass and will loop from a to b

Example

#include <io>
#include <string>
var i;
for i from 0 to 9 {
   print(itostring(i)+"\n");
};

This code example will loop from 0 to 9 (10 iterations) and display the value of i on each pass.

Since: Version 0.41b