for i = 1, 5 do
    if i == 3 then
        goto continue  -- Skip the rest of the loop body for i = 3
    end
    print(i)
    ::continue::
end