luna-core 2.15.0

Pure-Rust Lua runtime (interpreter only, zero third-party dependencies). The JIT-equipped variant lives in the `luna-jit` crate.
Documentation
-- v2.15 P2.4: deeply nested do-end blocks.
local acc = 0
do
  local x = 1
  do
    local y = 2
    do
      local z = 3
      do
        local w = 4
        do
          local v = 5
          acc = x + y + z + w + v
        end
      end
    end
  end
end
print(acc)