luna-core 2.12.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.11 CORPUS-II: string.reverse byte-order (not char).
print(string.reverse(""))
print(string.reverse("a"))
print(string.reverse("hello"))
print(string.reverse("12345"))
-- reversing byte-wise (not unicode)
print(#string.reverse("abc"))