piccolo 0.3.3

Stackless Lua VM implemented in pure Rust
Documentation
function test1()
    local i = 1
    do
        local i = 2
    end
    return i == 1
end

function test2()
    i = 1
    do
        local i = 2
    end
    return i == 1
end

assert(
    test1() and
    test2()
)