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.14 HD 5.2 seed: still one number type (double); math.type
-- does not exist; integer-valued floats print bare.
print(math.type)
print(1, 3.0, 10 / 4)
print(2^31, 2^53)
print(7 % 2, 7.5 % 2)