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
6
7
8
-- v2.13 CORPUS-IV: concat with numbers needs no metamethod;
-- boolean/nil concat errors; float spelling inside concat.
print(1 .. 2 .. 3)
print(1.5 .. "|" .. 2.0)
print((pcall(function() return "x" .. nil end)))
print((pcall(function() return "x" .. true end)))
print((pcall(function() return {} .. "x" end)))
print(0.1 .. "")