luna-core 2.11.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
8
-- v2.11 CORPUS-II: string case conversion.
print(string.upper("hello"))
print(string.lower("HELLO"))
print(string.upper("Hello, World!"))
print(string.lower("Hello, World!"))
-- non-alpha unchanged
print(string.upper("123abc"))
print(string.lower("ABC123"))