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.12 CORPUS-III: repeat...until has local visible in until expr.
local n = 0
repeat
  n = n + 1
  local should_stop = n >= 3
until should_stop
print(n)   -- 3