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
6
-- v2.15 P2.5 (5.1): local arg = table.pack-style.
local function f(...)
  local arg = {...}
  return arg[1], arg[2], arg[3]
end
print(f(10, 20, 30))