Problem description:
This is relatively simple , however I can't find a proper example of it being done anywhere, and I can't seem to figure out how to do it so I thought I'd ask :
I'm trying to loop through a list, but only certain parts of the list.
For instance :
var/list/a=list("A","b","l","m","h")
//then only loop through indexes 1-4
For some reason I can't use 'to' properly to do this, but I may be approaching it wrong.
I could just copy the part of the list I want to loop through and do so, but it seems as if this above method should be possible.