silt-lua 0.1.1

A pure rust Lua interpreter and virtual machine
Documentation
1
2
3
4
5
6
7
function a()
    return 1,2
end

b,c=a()

print(b,c)