luna-core 2.13.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.13 CORPUS-IV: hexadecimal float literals (0x1p4 etc).
print(0x10, 0xA.8p0)
print(0x1p4, 0x1p-2)
print(0x.8p1)
print(math.type(0x10), math.type(0x1p4))
print(0xFF == 255, 0x1p10 == 1024.0)
print(tonumber("0x1p4"))