How about 
    
    
    var k: array[10, int]
    
    for i in countup(k.low, k.high, 2):
      k[i] = (i + 1) * 10
      echo k[i]
    
    
    
    Run

Reply via email to