Which of the example below is more efficient (even if there were a difference 
in nanoseconds):
    
    
    for i in countup(1, 10)
      echo $i
      inc(i)
    
    
    
    for i in ..<=10
      echo $i
      i = i + 1
    

Are both of them have the exact velocity?

Reply via email to