For loops

Some simple for loops:

# printing: 0 1 2 3
for i in 0 .. 3:
  echo i

# printing: 0 1 2
for i in 0 ..< 3:
  echo i