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.4 seed: bitwise ops accept integral floats, reject
-- fractional ones.
print(3.0 & 1, 2.0 | 1)
print((pcall(function() return 3.5 & 1 end)))
print(~0, 1 << 62 ~= 0)