While

While #

While loops will run as long as the condition is truthy.

Print numbers from 0 to 3:

πŸš€ > a = 0
πŸš€ > while (a != 4)
  puts(a)
  a = a + 1
end

// which prints
0
1
2
3
=> nil