IDLua icon indicating copy to clipboard operation
IDLua copied to clipboard

goto syntax

Open dodocoera opened this issue 4 years ago • 0 comments

function func ()
    local a = 1
    ::label:: print("--- goto label ---")

    a = a+1
    if a < 3 then
        goto label
    end
end

it complain "chunk:3: unexpected symbol in prefix expression near :"

dodocoera avatar Dec 02 '20 06:12 dodocoera