luna-core 2.16.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.3 seed: tostring/tonumber across the new subtype.
print(tostring(5), tostring(5.0))
print(tonumber("5"), tonumber("5.0"))
print(math.type(tonumber("5")), math.type(tonumber("5.0")))
print(5 .. "", 5.0 .. "")