luna-core 2.15.0

Pure-Rust Lua runtime (interpreter only, zero third-party dependencies). The JIT-equipped variant lives in the `luna-jit` crate.
Documentation
1
2
3
4
5
-- v2.14 HD 5.1 seed: loadstring (deprecated 5.2+).
print(loadstring("return 42")())
print(loadstring("return 1 + 2")())
local f, err = loadstring("syntax error here")
print(f == nil, err ~= nil)