ds84182 / LuaVM

Lua Virtual Machine (and various tools) for Lua so you can Lua while you Lua

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Decompiler2: Unsupported Loops

ds84182 opened this issue · comments

  • while true do end
  • while <cond> do <...> if <cond> then <single instruction> end end
  • while true do <...> end (this one is hard... kinda)
  • repeat <...> until <cond>