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
-- v2.12 CORPUS-III: string.char many args.
print(string.char(72, 101, 108, 108, 111, 44, 32, 87, 111, 114, 108, 100))
-- individual bytes
for i = 65, 70 do io.write(string.char(i)) end
print()