silt-lua 0.1.1

A pure rust Lua interpreter and virtual machine
Documentation
1
2
3
4
5
a = 1
while a < 10000000 do
    a = a + 1
end
print(a)