haumea-lang / haumea-rs

Haumea is an experimental language designed to be simple and easy to learn and program in.
MIT License
7 stars 2 forks source link

for each doesn't work with a negative by value #17

Closed BookOwl closed 7 years ago

BookOwl commented 7 years ago
for each x in 5 though 1 by -1 do
  display(x)
end

should display 5, 4, 3, 2, 1, but right now it doesn't loop at all.