cardillan / mindcode

A high level language for Mindustry Logic and Mindustry Schematics.

Home Page:http://mindcode.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bug: loop unrolling fails on degenerate loops

cardillan opened this issue · comments

The following code causes an internal error in loop unroller:

i = 0
while i < 1000
    print(i)
end