TannerRogalsky / love.js

LÖVE ported to the web using Emscripten
MIT License
493 stars 53 forks source link

Incompatible with goto #70

Open MrcSnm opened 4 years ago

MrcSnm commented 4 years ago
if(condition) then
    goto continue
end
      --Do things
::continue::
--Do other things

Error is expected "=" near continue

Just creating a boolean instead of goto will make it work.