Loops

Sepynode currently supports while loops.

var i = 0;
while(i != 14){
    println << "i = " << i c< 3;
    i += 1;
}

Notes

  • while loops are really straightforward. The code block in the loop will be exectued until the condition is met.