Hi @miran, first of all thanks for the Nim Basics course, i'm reading this
right now, i am a begginer in programming. I'm stucked in the 2nd part of the
first exercise of Containers. May you could help me with this.
* Print only the elements of that array that are on odd indices (values 20,
40, …).
I dont know how to print only the odd elements of my array:
var
k: array[10, int]
for i in 0 .. 9:
k[i] = (i + 1) * 10
echo k
Sorry for my bad english, and thanks again for the course.
