luna-core 2.12.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
6
-- v2.11 CORPUS-II: load+dump round-trip.
local orig = load("return function(x) return x * 3 + 1 end")
if orig then
  local f = orig()
  print(f(4))
end