I am wondering how one would tackle looping through a collection of objects, processing the elements of that collection in groups instead of singularly, as is the case in no
I've got this:
$array = 1..100 $group = 10 $i = 0 do { $array[$i..(($i+= $group) - 1)] '*****' } until ($i -ge $array.count -1)