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
6
7
8
9
-- v2.14 CV.1: io.tmpfile write/seek/read round-trip.
local f = io.tmpfile()
f:write("hello\nworld\n")
print(f:seek("set", 0))
print(f:read("l"))
print(f:read("a"))
print(f:seek("cur", 0))
f:close()
print(io.type(f))