home

Loops

Count

loop

Have the variable i take on the values from the start number to the end number, counting by the specified interval, and do the specified blocks.

						
//!OpenSCAD
for (i = [1 : abs(1) : 10]) {
}