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
-- v2.15 P2.4 utf8: codepoint extraction.
print(utf8.codepoint("A"))          -- 65
print(utf8.codepoint("Hi", 1, 2))   -- 72 105
print(utf8.codepoint("é"))          -- 233
print(utf8.codepoint(utf8.char(0x1F600), 1))