silt-lua 0.1.1

A pure rust Lua interpreter and virtual machine
Documentation
1
2
3
4
5
6
7
8
9
10
mt = debug.getmetatable(0) or {}
mt.__call = function(self, a)
    return self + a
end
debug.setmetatable(0, mt)

b = 0
(3)

-- print(b) -- 5