For

The two ways of writing the for statement are:

        for(initialisiation, test, increment)
        {
            code;
        };
        for variable = vector
            code;
        end;