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
7
-- v2.14 CV.3: select '#' and positive/negative indices.
print(select("#"))
print(select("#", nil, nil))
print(select(2, "a", "b", "c"))
print(select(-1, "x", "y", "z"))
print(select(-2, "x", "y", "z"))
print(select(5, "a"))