I am trying to go thought an array every 2 positions. How is this possible in verse?
Example in Java:
for (int i = 0; i < 5; i = i+2) {
Array[i];
}
I am trying to go thought an array every 2 positions. How is this possible in verse?
Example in Java:
for (int i = 0; i < 5; i = i+2) {
Array[i];
}