piccolo 0.3.3

Stackless Lua VM implemented in pure Rust
Documentation
1
2
3
4
5
6
7
8
do
    local function test()
        test = 4
    end

    test()
    assert(test == 4)
end