luna-core 2.16.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
10
11
-- v2.15 P2.5 (5.2): goto used as break-out-of-inner-loop.
for i = 1, 3 do
  for j = 1, 3 do
    if i * j == 6 then
      io.write("stop@", i, ",", j, " ")
      goto done
    end
  end
end
::done::
print()