luna-core 2.14.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: the integer subtype arrives — 1 vs 1.0
-- print differently; math.type distinguishes.
print(1, 1.0, 3 / 1, 3 // 1)
print(math.type(1), math.type(1.0), math.type("x"))
print(1 == 1.0, math.maxinteger, math.mininteger)