dash-lang 0.2.0

A simple interpreted language
Documentation
1
2
3
4
5
let x = 0
while x < 5 {
  print(x)
  let x = x + 1
}