Difference between revisions of "For"

From Mesham
Jump to navigationJump to search
m
Line 13: Line 13:
 
  #include <io>
 
  #include <io>
 
  #include <string>
 
  #include <string>
  var i;
+
  function void main() {
for i from 0 to 9 {
+
    var i;
    print(itostring(i)+"\n");
+
    for i from 0 to 9 {
 +
      print(itostring(i)+"\n");
 +
    };
 
  };
 
  };
  

Revision as of 14:10, 15 April 2013

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>
function void main() {
   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